👍
This commit is contained in:
Kevin Röbert
2017-08-04 02:43:36 +02:00
commit a4c453733e
8 changed files with 299 additions and 0 deletions

39
manifest.json Normal file
View File

@@ -0,0 +1,39 @@
{
"manifest_version": 2,
"name": "ClearUrls",
"version": "1.0.4.4",
"author": "Kevin R., Arne S.",
"description": "Remove tracking elements form urls.",
"icons": {
"32": "icons/32x32.png",
"64": "icons/64x64.png",
"128": "icons/128x128.png",
"256": "icons/256x256.png",
"512": "icons/512x512.png"
},
"permissions": [
"webRequest",
"<all_urls>",
"webRequestBlocking"
],
"background": {
"scripts": ["clearurls.js"]
},
"incognito": "spanning",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"default.js"
]
}
]
}