Skip to content

Commit 95782eb

Browse files
committed
2.2.9
1 parent 7c52ea0 commit 95782eb

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,15 @@ you clicked on (page, link, selection, image, video or audio).
5353

5454
### Installing from your browser's web store
5555

56-
> [2.2.8](https://github.com/SanderRonde/CustomRightClickMenu/releases/tag/2.2.8.2) is the current latest version
56+
> [2.2.9](https://github.com/SanderRonde/CustomRightClickMenu/releases/tag/2.2.9) is the current latest version.
5757
58-
* [Chrome Webstore](https://chrome.google.com/webstore/detail/custom-right-click-menu/onnbmgmepodkilcbdodhfepllfmafmlj) - On version 2.2.8
58+
* [Chrome Webstore](https://chrome.google.com/webstore/detail/custom-right-click-menu/onnbmgmepodkilcbdodhfepllfmafmlj) - On version 2.2.9
5959
* [Firefox Add-on](https://addons.mozilla.org/nl/firefox/addon/custom-right-click-menu/) - On 2.2.8
60-
* [Edge Extension](https://www.microsoft.com/store/apps/9P6T9NZ0QML9) - On 2.2.7, 2.2.8 certification in progress
60+
* [Edge Extension](https://www.microsoft.com/store/apps/9P6T9NZ0QML9) - On 2.2.8 certification in progress
6161
* Opera extension - Under certification for initial release (no changes in review status since submission in may 2018)
6262

63+
**Note**: 2.2.9 is a downgrade of 2.2.8 to comply with Google's mysterious web store policies, I wouldn't recommend upgrading from 2.2.8 to 2.2.9 if you have the choice.
64+
6365
### Installing from repo
6466

6567
Clone the repo, run [yarn --ignore-engines](https://yarnpkg.com) to install dependencies and run `yarn build` to build. Load the dist that matches your browser from dist/{browser}.

app/elements/util/change-log/changelog.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,12 @@
200200
'Hide root node when empty',
201201
'Add another CRM API function (crmAPI.fetchBackground) that can do a fetch' +
202202
' without running into [CORB](https://www.chromestatus.com/feature/5629709824032768) issues'
203+
],
204+
'2.2.9': [
205+
'Remove detection of extensions installed alongside this one such as Tampermonkey and Stylish' +
206+
' because Google thinks the permissions used are extraneous',
207+
'Remove greasemonkey-style resources because Google thinks the permissions used are extraneous',
208+
'Remove activeTab permission since it is overshadowed by the tabs permission'
203209
]
204210
};
205211

app/manifest.chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"options_page": "html/options.html",
55
"name": "Custom Right-Click Menu",
66
"description": "Create a custom right-click menu and choose the links and scripts you want in it.",
7-
"version": "2.2.8",
7+
"version": "2.2.9",
88
"short_name": "CRM-dev",
99
"minimum_chrome_version": "26",
1010

app/manifest.edge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"options_page": "html/options.html",
66
"name": "Custom Right-Click Menu for Microsoft Edge",
77
"description": "Create a custom right-click menu and choose the links and scripts you want in it.",
8-
"version": "2.2.8",
8+
"version": "2.2.9",
99
"short_name": "CRM-dev",
1010

1111
"background": {

app/manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"name": "Custom Right-Click Menu",
1010
"description": "Create a custom right-click menu and choose the links and scripts you want in it.",
11-
"version": "2.2.8",
11+
"version": "2.2.9",
1212
"short_name": "CRM-dev",
1313
"applications": {
1414
"gecko": {

app/manifest.opera.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"options_page": "html/options.html",
55
"name": "Custom Right-Click Menu",
66
"description": "Create a custom right-click menu and choose the links and scripts you want in it.",
7-
"version": "2.2.8",
7+
"version": "2.2.9",
88
"short_name": "CRM-dev",
99
"minimum_opera_version": "51.0",
1010

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,6 @@
208208
"package": "gulp genCRX && gulp genXPI && yarn genAppx",
209209
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'app/bower_components', 'junction') } catch (e) { }\""
210210
},
211-
"version": "2.2.8",
211+
"version": "2.2.9",
212212
"dependencies": {}
213213
}

0 commit comments

Comments
 (0)