Firefox permission reset for a particular site

From Notes_Wiki

Home > CentOS > CentOS 6.x > Desktop tools > Firefox > Firefox permission reset for a particular site

Firefox plugins (eg flash plugin) may store preferences for a particular site permanently. To reset such stored permissions use:

  1. cd ~/.mozilla
  2. cat profiles.ini
  3. cd <default-profile-folder>
  4. sqlite3 permissions.sqlite
  5. select * from moz_hosts where lower(host) like '%<site>%';
  6. delete from moz_hosts where id=<first-col-value>;
  7. .quit


Home > CentOS > CentOS 6.x > Desktop tools > Firefox > Firefox permission reset for a particular site