mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-01 16:33:06 +01:00
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"name": "uBlock Origin",
|
|
"version": "1.2.1",
|
|
|
|
"default_locale": "en",
|
|
"description": "__MSG_extShortDesc__",
|
|
"icons": {
|
|
"16": "img/icon_16.png",
|
|
"128": "img/icon_128.png"
|
|
},
|
|
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"19": "img/browsericons/icon19.png",
|
|
"38": "img/browsericons/icon38.png"
|
|
},
|
|
"default_title": "uBlock Origin",
|
|
"default_popup": "popup.html"
|
|
},
|
|
|
|
"author": "All uBlock Origin contributors",
|
|
"background": {
|
|
"page": "background.html"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["js/vapi-client.js", "js/contentscript-start.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true
|
|
},
|
|
{
|
|
"matches": ["http://*/*", "https://*/*"],
|
|
"js": ["js/contentscript-end.js"],
|
|
"run_at": "document_end",
|
|
"all_frames": true
|
|
},
|
|
{
|
|
"matches": [
|
|
"https://*.adblockplus.org/*",
|
|
"https://*.adblockplus.me/*",
|
|
"https://www.fanboy.co.nz/*",
|
|
"https://github.com/gorhill/uBlock/wiki/Filter-lists-from-around-the-web"
|
|
],
|
|
"js": ["js/subscriber.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"incognito": "split",
|
|
"minimum_chrome_version": "22.0",
|
|
"options_page": "dashboard.html",
|
|
"options_ui": {
|
|
"page": "options_ui.html"
|
|
},
|
|
"permissions": [
|
|
"contextMenus",
|
|
"privacy",
|
|
"storage",
|
|
"tabs",
|
|
"unlimitedStorage",
|
|
"webNavigation",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"http://*/*",
|
|
"https://*/*"
|
|
],
|
|
"short_name": "uBlock₀"
|
|
}
|