clear-urls-browser-extension/manifest.json
Kevin Röbert 349b645d88 Version 1.3.3.1
I've updated the ClearURLs core, so that ClearURLs only cleans the fields from urls.

This means that ClearURLs can no longer examine all components of a URL and, if necessary, remove something, but only the so-called GET fields.

This restricts not hardly, since everything that is not a GET field is a part of the url (the path) and should not actually be removed.

However, because ClearURLs was able to remove these path elements, this problem came up again. Now ClearURLs can only remove GET fields and thus no longer destroy paths.

I hope that there are fewer problems now. Another little side effect of the change, ClearURLs is now working more efficiently.
2018-06-23 12:56:37 +02:00

67 lines
1.7 KiB
JSON

{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.3.3.1",
"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": [
"*://*/*",
"webRequest",
"webRequestBlocking",
"storage",
"tabs"
],
"background": {
"scripts": [
"external_js/jquery-3.2.1.min.js",
"external_js/sha256.jquery.js",
"clearurls.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"]
}
]
}