Skip to content

Commit

Permalink
forgot to add commands permissions [opera]
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jul 2, 2017
1 parent 63ac495 commit b2f1b7e
Showing 1 changed file with 22 additions and 15 deletions.
37 changes: 22 additions & 15 deletions platform/opera/manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,5 @@
{
"manifest_version": 2,

"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"
},

"author": "All uBlock Origin contributors",
"browser_action": {
"default_icon": {
"19": "img/browsericons/icon19.png",
Expand All @@ -19,11 +8,20 @@
"default_title": "uBlock Origin",
"default_popup": "popup.html"
},

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

0 comments on commit b2f1b7e

Please sign in to comment.