1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-25 04:52:45 +02:00
CanvasBlocker/package.json

48 lines
1.5 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",
"description": "Domains where the <canvas>-API should not be blocked. To add multiple domains seperate them by comma.",
"type": "string",
"value": "kkapsner.de,^https?://(\\\\w+\\\\.)*google.[a-z]+/maps"
2014-07-31 03:05:51 +02:00
},
{
"name": "blockAll",
"title": "Block everything",
"description": "If you want to block everything (ignore the white list).",
"type": "bool",
"value": false
2014-08-01 12:03:23 +02:00
},
{
"name": "blackList",
"title": "Black list",
"description": "Domains where the <canvas>-API should always be blocked. To add multiple domains seperate them by comma.",
"type": "string",
"value": ""
},
{
"name": "askPermission",
"title": "Ask for permission",
"description": "If you want to be asked if you want to block a canvas element if the domain is neither in the white or black list.",
"type": "bool",
"value": true
2014-08-04 17:02:42 +02:00
},
{
"name": "allowPDFCanvas",
"title": "Allow canvas in PDFs.",
"description": "The native pdf.js uses <canvas> to display the PDF content. If this is unchecked there will lots of annoying ask dialogs.",
"type": "bool",
"value": true
2014-07-31 03:05:51 +02:00
}
],
"author": "Korbinian Kapsner",
"license": "MPL 2.0",
2014-08-11 18:05:56 +02:00
"version": "0.1.2",
2014-07-31 03:05:51 +02:00
"permissions": {"private-browsing": true}
}