Addon/manifest.json

26 lines
481 B
JSON
Raw Normal View History

2017-08-04 03:43:36 +03:00
{
"manifest_version": 2,
"name": "ClearUrls",
2017-08-04 07:36:22 +03:00
"version": "0.4",
2017-08-04 03:43:36 +03:00
"author": "Kevin R., Arne S.",
"description": "Remove tracking elements form urls.",
2017-08-04 16:04:37 +03:00
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
2017-08-04 16:07:36 +03:00
"96": "icon96.png"
2017-08-04 16:04:37 +03:00
},
2017-08-04 03:43:36 +03:00
"permissions": [
2017-08-04 07:36:22 +03:00
"*://*/*",
2017-08-04 03:43:36 +03:00
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["clearurls.js"]
},
"content_scripts": [
{
2017-08-04 15:02:52 +03:00
"matches": ["<all_urls>"]
2017-08-04 03:43:36 +03:00
}
]
}