1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-16 09:59:51 +02:00
CanvasBlocker/package.json

113 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2014-07-31 03:05:51 +02:00
{
"name": "canvasblocker",
"title": "CanvasBlocker",
"id": "CanvasBlocker@kkapsner.de",
"keywords": "privacy, canvas, fingerprinting",
"description": "Changes the JS-API for modifying <canvas> to prevent Canvas-Fingerprinting.",
"homepage": "https://github.com/kkapsner/CanvasBlocker/",
2014-07-31 03:05:51 +02:00
"preferences": [
{
"name": "whiteList",
"title": "White list",
"type": "string",
2014-10-13 01:37:13 +02:00
"value": "kkapsner.de"
2014-07-31 03:05:51 +02:00
},
2014-08-01 12:03:23 +02:00
{
"name": "blackList",
"title": "Black list",
"type": "string",
"value": ""
},
{
2014-08-20 10:21:38 +02:00
"name": "blockMode",
"title": "block mode",
"type": "menulist",
"value": "fakeReadout",
2014-08-20 10:21:38 +02:00
"options": [
{
"value": "blockReadout",
"label": "block readout API"
},
2014-10-13 01:37:13 +02:00
{
"value": "fakeReadout",
"label": "fake readout API"
},
2015-09-08 11:41:33 +02:00
{
"value": "askReadout",
"label": "ask for readout API permission"
},
{
"value": "",
"label": ""
},
{
"value": "blockEverything",
"label": "block everything"
},
{
"value": "block",
"label": "allow only white list"
},
{
"value": "ask",
"label": "ask for permission"
},
{
"value": "allow",
"label": "block only black list"
},
2014-08-20 10:21:38 +02:00
{
"value": "allowEverything",
"label": "allow everything"
}
]
},
2015-09-08 11:41:33 +02:00
{
"name": "askOnlyOnce",
"title": "Ask only once",
"type": "bool",
"value": true
},
{
"name": "showNotifications",
"title": "Show notifications",
"type": "bool",
"value": true
},
{
"name": "ignoreList",
"title": "Ignore list",
"type": "string",
"value": ""
2015-09-08 11:41:33 +02:00
},
{
"name": "showCallingFile",
"title": "Display calling file",
"type": "bool",
"value": false
},
{
"name": "showCompleteCallingStack",
"title": "Display complete calling stack",
"type": "bool",
"value": false
2015-12-31 13:37:27 +01:00
},{
"name": "enableStackList",
"title": "Use file specific scoped white list",
2015-12-31 13:37:27 +01:00
"type": "bool",
"value": false
},
{
"name": "stackList",
"title": "File specific white list",
2015-12-31 13:37:27 +01:00
"type": "string",
"value": ""
2014-07-31 03:05:51 +02:00
}
],
2015-05-15 00:31:44 +02:00
"main": "lib/main.js",
2014-07-31 03:05:51 +02:00
"author": "Korbinian Kapsner",
"license": "MPL 2.0",
2016-01-28 23:49:01 +01:00
"version": "0.2.2-Release",
2014-07-31 03:05:51 +02:00
"permissions": {"private-browsing": true}
}