A lightweight extension to block tracking requests.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.0",
"description": "__MSG_extensionDescription__",
"icons": {
"48": "icons/privacy-48.png"
},
"permissions": [
"storage",
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons/privacy-48.png",
"default_popup": "popup.html",
"default_title": "__MSG_extensionName__"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{71e637ee-529b-4944-b0e3-acc9adf25ab5}"
}
}
}