Addon/manifest.json
Kevin Röbert 06b84d7490 Version 1.3.4.0
+ Added suggestion from issue #106
+ Added new french translation. A special thanks to the translator
2018-10-08 16:28:53 +02:00

75 lines
1.9 KiB
JSON

{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.3.4.0",
"author": "Kevin R.",
"description": "Remove tracking elements form URLs.",
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",
"default_locale": "en",
"applications": {
"gecko": {
"id": "{74145f27-f039-47ce-a470-a662b129930a}"
}
},
"icons": {
"16": "img/clearurls.svg",
"19": "img/clearurls.svg",
"20": "img/clearurls.svg",
"24": "img/clearurls.svg",
"30": "img/clearurls.svg",
"32": "img/clearurls.svg",
"38": "img/clearurls.svg",
"48": "img/clearurls.svg",
"64": "img/clearurls.svg",
"96": "img/clearurls.svg",
"128": "img/clearurls.svg"
},
"browser_action": {
"browser_style": true,
"default_icon": {
"16": "img/clearurls.svg",
"19": "img/clearurls.svg",
"20": "img/clearurls.svg",
"24": "img/clearurls.svg",
"30": "img/clearurls.svg",
"32": "img/clearurls.svg",
"38": "img/clearurls.svg",
"48": "img/clearurls.svg",
"64": "img/clearurls.svg",
"96": "img/clearurls.svg",
"128": "img/clearurls.svg"
},
"default_title": "ClearURLs Add-on",
"default_popup": "html/popup.html"
},
"permissions": [
"*://*/*",
"<all_urls>",
"webRequest",
"webRequestBlocking",
"storage",
"tabs"
],
"background": {
"scripts": [
"browser-polyfill.js",
"external_js/jquery-3.2.1.min.js",
"external_js/sha256.jquery.js",
"clearurls.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"browser-polyfill.js"
]
}
],
"options_ui": {
"page": "html/settings.html"
}
}