Refresh favicon in bookmarks (Firefox)

42,834

Solution 1

There is a solution that works on every browser:

  • go to www.yourwebsiteurl.com/favicon.ico (works for localhost as well)

  • force refresh (Ctrl+F5 for most browsers, or manually)

  • restart the browser

Solution 2

In Firefox 56 on Windows I was able to refresh just a specific bookmark favicon as follows:

  • Install sqlite-tools from https://www.sqlite.org/download.html
  • Quit Firefox (close all open Firefox windows).
  • At the command line, change into your profile directory. Mine was at %AppData%\Mozilla\Firefox\Profiles\<profilename>.default.
  • Open the favicon.sqlite database using sqlite3:

    sqlite3 favicons.sqlite
    
  • Find the favicon(s) you want to remove:

    select * from moz_icons where icon_url like '%search_term_goes_here%';
    
  • Delete them:

    delete from moz_icons where icon_url like '%search_term_goes_here%';
    
  • Exit.

    .exit
    
  • Start Firefox and visit the relevant pages. The favicon will be refreshed when you do this.

Solution 3

It's a bit hacky, but try changing the bookmark properties from http to https or vice versa, then clicking the bookmark. If you changed from http to https, just leave it after that. If you changed from https to http, change it back.

Solution 4

Windows

Go to C:\Users\ *your profile* \AppData\Roaming\Mozilla\Firefox\Profiles\ *random name*.default-*random #*

Delete file: favicons.sqlite

All bookmark favicons will be set to default and will refresh when your revisit the sites.

Tested on version 66.0.1 (64-bit) & 72.0.2 (64-bit)

Share:
42,834
Mistalis
Author by

Mistalis

I used to be a web development engineer and I worked mostly with AngularJS. I'm interested in new technologies, IT and science in general. I'm now working in a recruitment agency as a recruiter and I'm specialized in IT profiles. You can find me on LinkedIn and Instagram.

Updated on January 26, 2022

Comments

  • Mistalis
    Mistalis over 2 years

    Few days ago, I've changed the favicon of my website: it works well when I open the website:enter image description here


    My website is also in my bookmarks, but it shows the old favicon: enter image description here

    I already had a look here, but answers did not solved my problem. The solution is probably very simple, but I have not found anything so far.

    Thanks!