1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-20 18:42:45 +02:00
CanvasBlocker/package.json

106 lines
2.0 KiB
JSON
Raw Permalink 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"
},
2014-10-11 01:46:47 +02:00
{
"value": "askReadout",
"label": "ask for readout API permission"
},
{
"value": "",
"label": ""
},
{
"value": "blockEverything",
"label": "block everything"
},
{
"value": "allowOnlyWhiteList",
"label": "allow only white list"
},
{
"value": "ask",
"label": "ask for permission"
},
2014-08-20 10:21:38 +02:00
{
"value": "blockOnlyBlackList",
"label": "block only black list"
},
{
"value": "allowEverything",
"label": "allow everything"
}
]
},
{
"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": ""
},
2014-12-15 18:43:47 +01:00
{
"name": "showCallingFile",
"title": "Display calling file",
"type": "bool",
"value": false
2014-12-15 18:43:47 +01:00
},
{
"name": "showCompleteCallingStack",
"title": "Display complete calling stack",
"type": "bool",
"value": false
2014-12-15 18:43:47 +01:00
},
2014-08-04 17:02:42 +02:00
{
"name": "allowPDFCanvas",
"title": "Allow canvas in PDFs",
2014-08-04 17:02:42 +02:00
"type": "bool",
"value": true
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",
"version": "0.1.6-Release",
2014-07-31 03:05:51 +02:00
"permissions": {"private-browsing": true}
}