2017-08-04 00:43:36 +00:00
|
|
|
{
|
|
|
|
"manifest_version": 2,
|
2017-08-04 13:15:56 +00:00
|
|
|
"name": "ClearURLs",
|
2017-09-18 15:53:08 +00:00
|
|
|
"version": "1.1.2.4",
|
2017-08-31 19:19:51 +00:00
|
|
|
"author": "Kevin R.",
|
2017-08-04 13:15:56 +00:00
|
|
|
"description": "Remove tracking elements form URLs. ",
|
|
|
|
"homepage_url": "https://github.com/KevinRoebert/ClearUrls",
|
2017-08-04 13:04:37 +00:00
|
|
|
"icons": {
|
|
|
|
"32": "icon32.png",
|
|
|
|
"48": "icon48.png",
|
|
|
|
"64": "icon64.png",
|
2017-08-04 13:07:36 +00:00
|
|
|
"96": "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": {
|
|
|
|
"19": "icon19.png",
|
|
|
|
"38": "icon38.png"
|
|
|
|
},
|
2017-08-06 16:34:23 +00:00
|
|
|
"default_title": "ClearURLs Add-on",
|
2017-08-31 19:19:51 +00:00
|
|
|
"default_popup": "popup_new.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-08-06 16:34:23 +00:00
|
|
|
"storage"
|
2017-08-04 00:43:36 +00:00
|
|
|
],
|
|
|
|
"background": {
|
2017-08-04 13:36:54 +00:00
|
|
|
"scripts": [
|
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
|
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"siteBlockedAlert.html"
|
2017-08-04 00:43:36 +00:00
|
|
|
]
|
2017-09-13 21:35:40 +00:00
|
|
|
}
|