clear-urls-browser-extension/manifest.json

32 lines
626 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-04 04:36:22 +00:00
"version": "0.4",
2017-08-04 00:43:36 +00:00
"author": "Kevin R., Arne S.",
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 13:36:54 +00:00
"default_popup": "popup.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"
2017-08-04 00:43:36 +00:00
],
"background": {
2017-08-04 13:36:54 +00:00
"scripts": [
"clearurls.js",
"popup.js"
]
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
}
]
}