CanvasBlocker/manifest.json

56 lines
1.1 KiB
JSON
Raw Normal View History

2017-06-25 22:33:12 +02:00
{
"name": "CanvasBlocker",
"title": "__MSG_addon_title__",
"id": "CanvasBlocker@kkapsner.de",
"keywords": "privacy, canvas, fingerprinting",
"description": "__MSG_addon_description__",
"homepage": "https://github.com/kkapsner/CanvasBlocker/",
"version": "0.4.0-Development",
"background": {
"scripts": ["lib/main.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"all_frames": true,
"run_at": "document_start",
"js": [
"lib/defaultSettings.js",
"lib/require.js",
"lib/modifiedAPI.js",
"lib/randomSupplies.js",
"lib/intercept.js",
"lib/callingStack.js",
"lib/askForPermission.js",
"lib/lists.js",
"lib/check.js",
"lib/frame.js"
]
}],
"options_ui": {
"browser_style": true,
"page": "options/options.html"
},
"author": "Korbinian Kapsner",
"license": "MPL 2.0",
"permissions": [
"<all_urls>",
"storage",
"tabs",
"activeTab",
"declarativeContentScript",
"events"
],
"applications": {
"gecko": {
"id": "CanvasBlocker@kkapsner.de",
"strict_min_version": "50.0"
}
},
"default_locale": "en",
"manifest_version": 2
}