diff --git a/platform/opera/manifest.json b/platform/opera/manifest.json index c8f8d8cf0..9aa58f523 100644 --- a/platform/opera/manifest.json +++ b/platform/opera/manifest.json @@ -1,64 +1,86 @@ { - "author": "All uBlock Origin contributors", - "browser_action": { - "default_icon": { - "19": "img/browsericons/icon19.png", - "38": "img/browsericons/icon19.png" - }, - "default_title": "uBlock Origin", - "default_popup": "popup.html" + "author": "All uBlock Origin contributors", + "background": { + "page": "background.html" + }, + "browser_action": { + "default_icon": { + "19": "img/browsericons/icon19.png", + "38": "img/browsericons/icon19.png" }, - "background": { - "page": "background.html" + "default_popup": "popup.html", + "default_title": "uBlock Origin" + }, + "commands": { + "launch-element-picker": { + "description": "__MSG_popupTipPicker__" }, - "commands": { - "launch-element-zapper": { - "description": "__MSG_popupTipZapper__" - }, - "launch-element-picker": { - "description": "__MSG_popupTipPicker__" - }, - "launch-logger": { - "description": "__MSG_popupTipLog__" - } + "launch-element-zapper": { + "description": "__MSG_popupTipZapper__" }, - "content_scripts": [ - { - "matches": ["http://*/*", "https://*/*"], - "js": ["js/vapi.js", "js/vapi-client.js", "js/contentscript.js"], - "run_at": "document_start", - "all_frames": true - }, - { - "matches": ["http://*/*", "https://*/*"], - "js": ["js/scriptlets/subscriber.js"], - "run_at": "document_idle", - "all_frames": false - } - ], - "default_locale": "en", - "description": "__MSG_extShortDesc__", - "icons": { - "16": "img/icon_16.png", - "128": "img/icon_128.png" + "launch-logger": { + "description": "__MSG_popupTipLog__" + } + }, + "content_scripts": [ + { + "all_frames": true, + "js": [ + "js/vapi.js", + "js/vapi-client.js", + "js/contentscript.js" + ], + "matches": [ + "http://*/*", + "https://*/*" + ], + "run_at": "document_start" }, - "incognito": "split", - "manifest_version": 2, - "minimum_opera_version": "32.0", - "name": "uBlock Origin", - "optional_permissions": [ "file:///*" ], - "options_page": "dashboard.html", - "permissions": [ - "contextMenus", - "privacy", - "storage", - "tabs", - "unlimitedStorage", - "webNavigation", - "webRequest", - "webRequestBlocking", - "" - ], - "short_name": "uBlockâ‚€", - "version": "1.9.15.101" + { + "all_frames": false, + "js": [ + "js/scriptlets/subscriber.js" + ], + "matches": [ + "http://*/*", + "https://*/*" + ], + "run_at": "document_idle" + } + ], + "default_locale": "en", + "description": "__MSG_extShortDesc__", + "icons": { + "128": "img/icon_128.png", + "16": "img/icon_16.png" + }, + "incognito": "split", + "manifest_version": 2, + "minimum_opera_version": "32.0", + "name": "uBlock Origin", + "optional_permissions": [ + "file:///*" + ], + "options_page": "dashboard.html", + "permissions": [ + "contextMenus", + "privacy", + "storage", + "tabs", + "unlimitedStorage", + "webNavigation", + "webRequest", + "webRequestBlocking", + "" + ], + "short_name": "uBlock\u2080", + "sidebar_action": { + "default_icon": { + "19": "img/browsericons/icon19.png", + "38": "img/browsericons/icon19.png" + }, + "default_panel": "logger-ui.html", + "default_title": "__MSG_statsPageName__" + }, + "version": "1.14.23.17" }