2017-08-04 00:43:36 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
2017-08-04 13:15:56 +00:00
|
|
|
"name": "ClearURLs",
|
2018-05-17 23:31:04 +00:00
|
|
|
"version": "1.2.2.0",
|
2017-08-31 19:19:51 +00:00
|
|
|
"author": "Kevin R.",
|
2017-12-16 22:50:50 +00:00
|
|
|
"description": "Remove tracking elements form URLs.",
|
2017-08-04 13:15:56 +00:00
|
|
|
"homepage_url": "https://github.com/KevinRoebert/ClearUrls",
|
2017-08-04 13:04:37 +00:00
|
|
|
"icons": {
|
2017-12-16 22:50:50 +00:00
|
|
|
"32": "img/icon32.png",
|
|
|
|
"48": "img/icon48.png",
|
|
|
|
"64": "img/icon64.png",
|
|
|
|
"96": "img/icon96.png"
|
2017-08-04 13:04:37 +00:00
|
|
|
},
|
2017-08-04 14:07:16 +00:00
|
|
|
"browser_action": {
|
2017-08-04 13:55:52 +00:00
|
|
|
"browser_style": true,
|
|
|
|
"default_icon": {
|
2017-12-16 22:50:50 +00:00
|
|
|
"19": "img/icon19.png",
|
|
|
|
"38": "img/icon38.png"
|
2017-08-04 13:55:52 +00:00
|
|
|
},
|
2017-08-06 16:34:23 +00:00
|
|
|
"default_title": "ClearURLs Add-on",
|
2017-12-16 22:50:50 +00:00
|
|
|
"default_popup": "html/popup.html"
|
2017-08-04 13:55:52 +00:00
|
|
|
},
|
2017-08-04 00:43:36 +00:00
|
|
|
"permissions": [
|
2017-08-04 04:36:22 +00:00
|
|
|
"*://*/*",
|
2017-08-04 00:43:36 +00:00
|
|
|
"webRequest",
|
2017-08-04 13:36:54 +00:00
|
|
|
"webRequestBlocking",
|
2017-12-16 22:50:50 +00:00
|
|
|
"storage",
|
|
|
|
"tabs"
|
2017-08-04 00:43:36 +00:00
|
|
|
],
|
|
|
|
"background": {
|
2017-08-04 13:36:54 +00:00
|
|
|
"scripts": [
|
2017-12-16 22:50:50 +00:00
|
|
|
"external_js/jquery-3.2.1.min.js",
|
|
|
|
"external_js/sha256.jquery.js",
|
2017-08-04 14:07:16 +00:00
|
|
|
"clearurls.js"
|
2017-08-04 13:36:54 +00:00
|
|
|
]
|
2017-08-04 00:43:36 +00:00
|
|
|
},
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
2017-08-04 12:02:52 +00:00
|
|
|
"matches": ["<all_urls>"]
|
2017-08-04 00:43:36 +00:00
|
|
|
}
|
|
|
|
]
|
2017-09-13 21:35:40 +00:00
|
|
|
}
|