Saturday 17 February 2018

Reset remembered firefox canvas decisions


Firefox 58 introduced a new feature, asking the user if we wants to allow HTML5 canvas image data for a website:



Will you allow [website] to use your HTML5 canvas image data? This may be used to uniquely identify your computer.



You can allow or deny the access, and you can always remember the decision.


How can I reset the decision once I have "always remembered" it (preferably individually for each website)?



Answer



You can find the permissions.sqlite sqlite database in your Mozilla profile folder, and then proceed to


SELECT * FROM moz_perms WHERE type = 'canvas/extractData';


From there you can decide which rows to keep or to delete with simple SQL delete statements, such as


DELETE FROM moz_perms WHERE type = 'canvas/extractData' AND origin = ''

or of course via its id


DELETE FROM moz_perms WHERE type = 'canvas/extractData' AND id = 

Please be careful when manipulating Firefox data, and be sure to backup your profile first.


No comments:

Post a Comment

Where does Skype save my contact's avatars in Linux?

I'm using Skype on Linux. Where can I find images cached by skype of my contact's avatars? Answer I wanted to get those Skype avat...