In Tools--->Add-ons-->Plugins-->Shockwave Flash
I selected Ask to activate
. Now I need to explicitly allow flash to play on every website I visit. It is possible to Allow and Remember
or block flash permanently for particular websites. The question is where is this whitelist/blacklist located?
Check https://support.mozilla.org/en-US/questions/1011980 :
A not user friendly solution to the problem is using an SQLite browser:
$ sudo apt-get install sqlitebrowser
.Open the
permissions.sqlite
database with the browser and you'll find a single table calledmoz_hosts
. This database is located within your user directory. Check here on how to find it.After opening the database select
type
withcontains
, and search forflash
. You'll get a list of sites for which there are flash settings set. Looking at record 65 at the end of the image, you'll notice the type isplugin:flash
and the permission is set to2
. The values 1, 2 and 3 mean respectively allow, block and always ask. If a site has use default selected then there will be no record for it in the table.These four options can be set for a specific site by using the third option in Whocares answer, i.e. click padlock or globe, select more information and then permissions. Flash is at the top.
Been looking for a solution for this for ages too ...
Found it here (Ubuntu 12.04):
go to
~\.macromedia\FlashPlayer
and you'll find some sub-folders containing URLs of websites to which were previously given permission ("allow and remember") but only after you've visited them in your current session. Apparently there is no list of all sites that were given permission.
However, this feature is part of firefox and not flash. So the permissions are handled in mozillas permission.sqlite file.
You can either delete this file to 'reset' your permissions or visit each site and follow bummis comment 606725.
Note: Mozilla might (temporarily) block this feature 'click-to-allow' for security reasons altogether, check https://addons.mozilla.org/de/firefox/blocked/ for updates.
Simply type:
into the address bar. This should pop up a window where you can choose these permissions.
Thanks hope this helps.