Addon/manifest.json

43 lines
896 B
JSON
Raw Normal View History

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