為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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

  • 6 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 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?

由 Deadduck 於 修改

被選擇的解決方法

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();
從原來的回覆中察看解決方案 👍 1

所有回覆 (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

選擇的解決方法

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.