Go to file
kkapsner 7337ac093a Moved file that should not be in xpi to excluded folder. 2017-07-14 09:00:37 +02:00
.documentation Moved file that should not be in xpi to excluded folder. 2017-07-14 09:00:37 +02:00
_locales Added description for rng. 2017-07-09 17:10:21 +02:00
lib Removed obsolete files. 2017-07-14 08:58:48 +02:00
options Show only settings that are useful within the given settings set. 2017-07-08 22:43:20 +02:00
pageAction Added method to display faked canvas content. 2017-07-08 22:40:38 +02:00
test Created way to load test page with no initial read access. 2017-07-02 02:05:44 +02:00
.gitattributes 💥🐫 Added .gitattributes 2014-07-31 03:04:18 +02:00
.gitignore Fixed mode "fake at input". 2017-02-10 16:30:11 +01:00
LICENSE.txt Added MPL 2015-01-16 13:05:40 +01:00
README.md Documentation cleanup. 2017-02-01 11:48:05 +01:00
manifest.json Restructuring of main.js. 2017-07-07 08:50:23 +02:00
releaseNotes.txt Show only settings that are useful within the given settings set. 2017-07-08 22:43:20 +02:00

README.md

This add-on allows users to prevent websites from using the Javascript <canvas> API to fingerprint them. Users can choose to block the <canvas> API entirely on some or all websites (which may break some websites) or just block or fake its fingerprinting-friendly readout API. More information on <canvas> fingerprinting can be found at http://www.browserleaks.com/canvas.

The different block modes are:

  • block readout API: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is not allowed to return values to the website.
  • fake readout API: Canvas Blocker's default setting, and my favorite! All websites not on the white list or black list can use the <canvas> API to display something on the page, but the readout API is forced to return a new random value each time it is called.
  • fake at input: on display of text the drawn pixels get modified slightly. This makes the detection of the add-on harder but is less secure. On WebGL-canvas the behaviour is identical to "fake readout API".
  • ask for readout API permission: All websites not on the white list or black list can use the <canvas> API to display something on the page, but the user will be asked if the website should be allowed to use the readout API each time it is called.
  • block everything: Ignore all lists and block the <canvas> API on all websites.
  • allow only white list: Only websites in the white list are allowed to use the <canvas> API.
  • ask for permission: If a website is not listed on the white list or black list, the user will be asked if the website should be allowed to use the <canvas> API each time it is called.
  • block only black list: Block the <canvas> API only for websites on the black list.
  • allow everything: Ignore all lists and allow the <canvas> API on all websites.