clear-urls-browser-extension/manifest.json

40 lines
798 B
JSON
Raw Normal View History

2017-08-04 00:43:36 +00:00
{
"manifest_version": 2,
2017-08-04 13:15:56 +00:00
"name": "ClearURLs",
2017-08-31 19:19:51 +00:00
"version": "1.1.2.0",
"author": "Kevin R.",
2017-08-04 13:15:56 +00:00
"description": "Remove tracking elements form URLs. ",
"homepage_url": "https://github.com/KevinRoebert/ClearUrls",
2017-08-04 13:04:37 +00:00
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
2017-08-04 13:07:36 +00:00
"96": "icon96.png"
2017-08-04 13:04:37 +00:00
},
2017-08-04 14:07:16 +00:00
"browser_action": {
"browser_style": true,
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_title": "ClearURLs Add-on",
2017-08-31 19:19:51 +00:00
"default_popup": "popup_new.html"
},
2017-08-04 00:43:36 +00:00
"permissions": [
2017-08-04 04:36:22 +00:00
"*://*/*",
2017-08-04 00:43:36 +00:00
"webRequest",
2017-08-04 13:36:54 +00:00
"webRequestBlocking",
"management",
"storage"
2017-08-04 00:43:36 +00:00
],
"background": {
2017-08-04 13:36:54 +00:00
"scripts": [
2017-08-04 14:07:16 +00:00
"clearurls.js"
2017-08-04 13:36:54 +00:00
]
2017-08-04 00:43:36 +00:00
},
"content_scripts": [
{
2017-08-04 12:02:52 +00:00
"matches": ["<all_urls>"]
2017-08-04 00:43:36 +00:00
}
]
}