1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-09-22 01:21:41 +02:00
CanvasBlocker/package.json

100 lines
1.9 KiB
JSON
Raw Normal View History

2014-07-31 03:05:51 +02:00
{
"name": "canvasblocker",
"title": "CanvasBlocker",
"id": "CanvasBlocker@kkapsner.de",
2014-08-05 14:36:05 +02:00
"description": "Blocks the JS-API for modifying <canvas> to prevent Canvas-Fingerprinting.",
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
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",
2015-09-10 17:29:16 +02:00
"version": "0.2.0-Release",
2014-07-31 03:05:51 +02:00
"permissions": {"private-browsing": true}
}