clear-urls-browser-extension/manifest.json

20 lines
368 B
JSON
Raw Normal View History

2017-08-04 00:43:36 +00:00
{
"manifest_version": 2,
"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.",
"description": "Remove tracking elements form urls.",
"permissions": [
2017-08-04 04:36:22 +00:00
"*://*/*",
2017-08-04 00:43:36 +00:00
"webRequest",
"webRequestBlocking"
],
"background": {
"scripts": ["clearurls.js"]
},
"content_scripts": [
{
2017-08-04 12:02:52 +00:00
"matches": ["<all_urls>"]
2017-08-04 00:43:36 +00:00
}
]
}