Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

ძიება მხარდაჭერაში

ნუ გაებმებით თაღლითების მახეში მხარდაჭერის საიტზე. აქ არასდროს მოგთხოვენ სატელეფონო ნომერზე დარეკვას, შეტყობინების გამოგზავნას ან პირადი მონაცემების გაზიარებას. გთხოვთ, გვაცნობოთ რამე საეჭვოს შემჩნევისას „დარღვევაზე მოხსენების“ მეშვეობით.

Learn More

How do I view (and edit) the complete list of blocked images?

  • 2 პასუხი
  • 2 მომხმარებელი წააწყდა მსგავს სიძნელეს
  • 1 ნახვა
  • ბოლოს გამოეხმაურა cor-el

I want to view (and edit) the complete list of web sites for which Firefox is blocking images. I don't want to check the permissions for just the page currently being viewed. How do I do this?

I want to view (and edit) the complete list of web sites for which Firefox is blocking images. I don't want to check the permissions for just the page currently being viewed. How do I do this?

ყველა პასუხი (2)

Hello,

You can try use this addon Image Block

Other settings to images:

  1. Go to about:config page.
  2. Search for permissions.default.image change its value to:
    • 1 – Allow all images to load, regardless of origin. (Default)
    • 2 - Block all images from loading.
    • 3 - Prevent third-party images from loading.

You can use the SQLite Manager extension to generate a list.

  1. Open Profile Directory -> permissions.sqlite -> Go
  2. Hit the "Execute SQL" tab
  3. Use a SELECT like this:
SELECT id,host,type,permission,expireType,datetime(expireTime/1000,'unixepoch','localtime') AS expireTime,appId,IsInBrowserElement
FROM moz_hosts
WHERE moz_hosts.id AND type LIKE "image"
ORDER BY moz_hosts.id ASC

You can display more permission types at once:

SELECT id,host,type,permission,expireType,datetime(expireTime/1000,'unixepoch','localtime') AS expireTime,appId,IsInBrowserElement
FROM moz_hosts
WHERE moz_hosts.id AND (type LIKE "cookie" OR type LIKE "image")
ORDER BY moz_hosts.id ASC