clear-urls-browser-extension/manifest.json
astaar 2c60532199 new icons and default popup
watch the emoji movie 💩
2017-08-04 15:55:52 +02:00

40 lines
799 B
JSON

{
"manifest_version": 2,
"name": "ClearURLs",
"version": "0.4",
"author": "Kevin R., Arne S.",
"description": "Remove tracking elements form URLs. ",
"homepage_url": "https://github.com/KevinRoebert/ClearUrls",
"icons": {
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"96": "icon96.png"
},
"page_action": {
"browser_style": true,
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
},
"default_title": "ClearURLs Add-on",
"default_popup": "popup.html"
},
"permissions": [
"*://*/*",
"webRequest",
"webRequestBlocking",
"management"
],
"background": {
"scripts": [
"clearurls.js",
"popup.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"]
}
]
}