This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

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

Hierdie gesprek is in die argief. Vra asseblief 'n nuwe vraag as jy hulp nodig het.

When I create a new bookmark, Firefox attaches an icon from a local tv station. How do I stop this?

  • 6 antwoorde
  • 1 het hierdie probleem
  • 1 view
  • Laaste antwoord deur Deadduck

more options

Whenever I create a new bookmark, it appears with an icon from a local tv station. when I save a bookmark from an open page, the icon if attached is correct. I really do not want bookmark icons anyway, h ow can I stop bookmark icons from displaying entirely?

Whenever I create a new bookmark, it appears with an icon from a local tv station. when I save a bookmark from an open page, the icon if attached is correct. I really do not want bookmark icons anyway, h ow can I stop bookmark icons from displaying entirely?

Gewysig op deur Deadduck

Gekose oplossing

You can expire all favicons via the Browser Console.

You can open the Browser Console (Firefox menu button or Tools > Web Developer). Toggle devtools.chrome.enabled to true on the about:config page to enable the command line in the Browser Console.

Paste the JavaScript code in the command line and press the Enter key to evaluate the code.

var fS = Components.classes["@mozilla.org/browser/favicon-service;1"]
         .getService(Components.interfaces.nsIFaviconService);
fS.expireAllFavicons();
Lees dié antwoord in konteks 👍 1

All Replies (6)

more options

I'm not sure how Firefox chooses the icon for new bookmarks that are for pages other than the current page. What I'm pretty sure does NOT happen is that Firefox does not try to retrieve the site's actual icon (favicon) in the background. However, when you visit the site, there's a reasonable chance that it will be updated.

There is no built-in option to show/hide bookmark icons. You may be able to use either an add-on or a custom style rule to suppress the icons. Did you want to hide them on the Bookmarks Toolbar, the Bookmarks Menu, or both?

more options

There are these prefs that you can consider to set to false to disable favicons entirely.

  • browser.chrome.favicons
  • browser.chrome.site_icons

You can open the about:config page via the location/address bar. You can accept the warning and click "I'll be careful" to continue.

more options

Actually I would prefer to stop a graphic image from being displayed as part of a tab, menu item, bookmark ect.ect., Icons, favacons or whatever.

more options

about:config's a good friend here, thank you, but those two changes did not make a difference. Appreciate the ref to the kb article

more options

Gekose oplossing

You can expire all favicons via the Browser Console.

You can open the Browser Console (Firefox menu button or Tools > Web Developer). Toggle devtools.chrome.enabled to true on the about:config page to enable the command line in the Browser Console.

Paste the JavaScript code in the command line and press the Enter key to evaluate the code.

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

That worked. Thank you.