Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Bookmark mini icons are all messed up.

  • 2 پاسخ
  • 1 has this problem
  • 1 view
  • آخرین پاسخ توسّط FFATX45

more options

The mini icons in my Bookmarks list are all incorrect. They are either blank or belong to a different link. I'm on FF28, however this has been happening for quite some time now. How do correct this?

The mini icons in my Bookmarks list are all incorrect. They are either blank or belong to a different link. I'm on FF28, however this has been happening for quite some time now. How do correct this?

Chosen solution

You can paste this code in the command line in the Browser Console (Firefox/Tools > Web Developer) to let all favicons expire.

var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]
         .getService(Components.interfaces.nsIFaviconService);
fS.expireAllFavicons();
developer.mozilla.org/en/XPCOM_Interface_Reference/nsIFaviconService

You need to use a bookmark to make Firefox retrieve the favicon.

Read this answer in context 👍 1

All Replies (2)

more options

Chosen Solution

You can paste this code in the command line in the Browser Console (Firefox/Tools > Web Developer) to let all favicons expire.

var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]
         .getService(Components.interfaces.nsIFaviconService);
fS.expireAllFavicons();
developer.mozilla.org/en/XPCOM_Interface_Reference/nsIFaviconService

You need to use a bookmark to make Firefox retrieve the favicon.

more options

Thanks cor-el. That deleted all the favicons. I installed the Favicon Reloader Add-on and the favicons are now correct.