manifest.json and pics

This commit is contained in:
Kevin Röbert 2017-08-04 06:36:22 +02:00
parent 035d224ad8
commit 3f8ab2b9d6
6 changed files with 3 additions and 21 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 684 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,39 +1,21 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "ClearUrls", "name": "ClearUrls",
"version": "1.0.5.5", "version": "0.4",
"author": "Kevin R., Arne S.", "author": "Kevin R., Arne S.",
"description": "Remove tracking elements form urls.", "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": [ "permissions": [
"*://*/*",
"webRequest", "webRequest",
"<all_urls>",
"webRequestBlocking" "webRequestBlocking"
], ],
"background": { "background": {
"scripts": ["clearurls.js"] "scripts": ["clearurls.js"]
}, },
"incognito": "spanning",
"content_scripts": [ "content_scripts": [
{ {
"matches": ["<all_urls>"], "matches": ["<all_urls>"],
"js": [ "js": ["default.js"]
"default.js"
]
} }
] ]
} }