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

184 lines
3.5 KiB
JSON
Raw Permalink Normal View History

2014-07-31 03:05:51 +02:00
{
2016-12-11 12:34:01 +01:00
"locales": {
"de": {
"title": "CanvasBlocker",
"description": "Ändert die JS-API zum Ändern von <canvas> um Canvas-Fingerprinting zu verhindern."
}
},
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",
2017-01-30 11:23:07 +01:00
"value": ""
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"
},
{
"value": "fakeInput",
"label": "fake input 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"
}
]
},
2016-05-10 08:01:21 +02:00
{
"name": "maxFakeSize",
"title": "Maximal fake size",
"type": "integer",
"value": 0
},
2016-08-06 19:17:36 +02:00
{
"name": "rng",
"title": "Random number generator",
"type": "menulist",
"value": "nonPersistent",
"options": [
{
"value": "nonPersistent",
"label": "non persistent"
},
{
"value": "persistent",
"label": "persistent"
}
]
},
{
"name": "persistentRndStorage",
"title": "Persistent storage",
"type": "string",
"value": ""
},
{
"name": "storePersistentRnd",
"title": "Store persistent data",
"type": "bool",
"value": false
},
{
"name": "clearPersistentRnd",
"title": "Clear persistent random storage",
"type": "control",
"label": "Clear"
},
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": "notificationDisplayTime",
"title": "notification display time",
"type": "integer",
"value": 30
},
{
"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": ""
},
{
"name": "showReleaseNotes",
"title": "Release notes",
"type": "control",
"label": "Show"
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",
2017-05-23 18:40:37 +02:00
"version": "0.3.8-Release",
2016-03-30 19:05:23 +02:00
"engines": {
"firefox": ">=50.0",
"fennec": ">=50.0"
2016-03-30 19:05:23 +02:00
},
2016-02-13 12:28:36 +01:00
"permissions": {
"private-browsing": true,
"multiprocess": true
},
"hasEmbeddedWebExtension": true
2014-07-31 03:05:51 +02:00
}