1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-20 01:12:38 +01:00

forgot to add commands permissions [opera]

This commit is contained in:
gorhill 2017-07-02 11:27:02 -04:00
parent cd50080e49
commit 962dbaadba
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1,16 +1,5 @@
{ {
"manifest_version": 2, "author": "All uBlock Origin contributors",
"name": "uBlock Origin",
"version": "1.9.15.101",
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"browser_action": { "browser_action": {
"default_icon": { "default_icon": {
"19": "img/browsericons/icon19.png", "19": "img/browsericons/icon19.png",
@ -19,11 +8,20 @@
"default_title": "uBlock Origin", "default_title": "uBlock Origin",
"default_popup": "popup.html" "default_popup": "popup.html"
}, },
"author": "All uBlock Origin contributors",
"background": { "background": {
"page": "background.html" "page": "background.html"
}, },
"commands": {
"launch-element-zapper": {
"description": "__MSG_popupTipZapper__"
},
"launch-element-picker": {
"description": "__MSG_popupTipPicker__"
},
"launch-logger": {
"description": "__MSG_popupTipLog__"
}
},
"content_scripts": [ "content_scripts": [
{ {
"matches": ["http://*/*", "https://*/*"], "matches": ["http://*/*", "https://*/*"],
@ -38,8 +36,16 @@
"all_frames": false "all_frames": false
} }
], ],
"default_locale": "en",
"description": "__MSG_extShortDesc__",
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"incognito": "split", "incognito": "split",
"manifest_version": 2,
"minimum_chrome_version": "38.0", "minimum_chrome_version": "38.0",
"name": "uBlock Origin",
"optional_permissions": [ "file:///*" ], "optional_permissions": [ "file:///*" ],
"options_page": "dashboard.html", "options_page": "dashboard.html",
"permissions": [ "permissions": [
@ -53,5 +59,6 @@
"webRequestBlocking", "webRequestBlocking",
"<all_urls>" "<all_urls>"
], ],
"short_name": "uBlock₀" "short_name": "uBlock₀",
"version": "1.9.15.101"
} }