1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-22 13:13:14 +12:00
uMatrix/platform/chromium/manifest.json

56 lines
1.4 KiB
JSON
Raw Normal View History

2014-10-18 08:01:09 +13:00
{
"manifest_version": 2,
"name": "uMatrix",
"short_name": "uMatrix",
2018-02-12 02:47:41 +13:00
"version": "1.3.3.8",
2014-10-18 08:01:09 +13:00
"description": "__MSG_extShortDesc__",
"icons": {
2015-04-11 09:06:49 +12:00
"16": "img/icon_16.png",
"128": "img/icon_128.png"
2014-10-18 08:01:09 +13:00
},
"browser_action": {
"default_icon": {
2015-05-02 16:18:31 +12:00
"19": "img/browsericons/icon19-19.png"
2014-10-18 08:01:09 +13:00
},
"default_title": "uMatrix",
2014-10-18 08:01:09 +13:00
"default_popup": "popup.html"
},
"author": "Raymond Hill",
"background": {
"page": "background.html"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["/js/vapi.js", "/js/vapi-client.js", "/js/contentscript-start.js"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["http://*/*", "https://*/*"],
"js": ["/js/contentscript.js"],
2014-10-18 08:01:09 +13:00
"run_at": "document_end",
"all_frames": true
}
],
"default_locale": "en",
"homepage_url": "https://github.com/gorhill/uMatrix/wiki",
2017-12-06 10:08:01 +13:00
"minimum_chrome_version": "45.0",
"options_ui": {
"page": "dashboard.html",
"open_in_tab": true
},
2014-10-18 08:01:09 +13:00
"permissions": [
"browsingData",
"cookies",
"privacy",
2014-10-18 08:01:09 +13:00
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"webRequest",
"webRequestBlocking",
"<all_urls>"
2014-10-18 08:01:09 +13:00
]
}