1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
uBlock/platform/webext/manifest.json

96 lines
2.1 KiB
JSON
Raw Normal View History

{
2017-07-21 13:48:50 +02:00
"applications":{
"gecko":{
"id":"uBlock0@raymondhill.net",
2017-09-01 23:34:33 +02:00
"strict_min_version":"52.0"
2017-07-21 13:48:50 +02:00
}
},
"author":"All uBlock Origin contributors",
"background":{
"page":"background.html"
},
"browser_action":{
"browser_style":false,
"default_icon":{
"19":"img/browsericons/icon19.png",
"38":"img/browsericons/icon38.png"
},
"default_title":"uBlock Origin",
"default_popup":"popup.html"
},
"commands":{
"launch-element-zapper":{
"description":"__MSG_popupTipZapper__"
},
"launch-element-picker":{
"description":"__MSG_popupTipPicker__"
},
"launch-logger":{
"description":"__MSG_popupTipLog__"
}
},
"content_scripts":[
{
"matches":[
"http://*/*",
2017-10-01 13:56:28 +02:00
"https://*/*",
"file://*/*"
2017-07-21 13:48:50 +02:00
],
"js":[
2017-11-16 16:55:28 +01:00
"/js/vapi.js",
"/js/vapi-client.js",
"/js/contentscript.js"
2017-07-21 13:48:50 +02:00
],
"run_at":"document_start",
"all_frames":true
},
{
"matches":[
"http://*/*",
"https://*/*"
],
"js":[
2017-11-16 16:55:28 +01:00
"/js/scriptlets/subscriber.js"
2017-07-21 13:48:50 +02:00
],
"run_at":"document_idle",
"all_frames":false
}
],
"default_locale":"en",
"description":"__MSG_extShortDesc__",
"icons":{
"16":"img/ublock.svg",
2017-11-10 17:36:14 +01:00
"48":"img/ublock.svg",
"96":"img/ublock.svg"
2017-07-21 13:48:50 +02:00
},
"manifest_version":2,
"name":"uBlock Origin",
"options_ui":{
"page":"dashboard.html",
"open_in_tab": true
2017-07-21 13:48:50 +02:00
},
"permissions":[
"contextMenus",
"privacy",
"storage",
"tabs",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"short_name":"uBlock₀",
2018-01-08 20:29:39 +01:00
"sidebar_action":{
"default_title":"__MSG_statsPageName__",
"default_panel":"logger-ui.html",
"default_icon":{
"16":"img/ublock.svg",
"48":"img/ublock.svg"
}
},
2018-02-15 23:25:38 +01:00
"version":"1.9.15.101",
"web_accessible_resources": [
"/web_accessible_resources/*"
]
}