mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
add sidebar support for Opera
This commit is contained in:
parent
36b1eac88e
commit
295cf563ee
1 changed files with 80 additions and 58 deletions
|
@ -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",
|
||||
"<all_urls>"
|
||||
],
|
||||
"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",
|
||||
"<all_urls>"
|
||||
],
|
||||
"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"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue