The Computer Oracle

How to refresh bookmark favicons in chrome

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Horror Game Menu Looping

--

Chapters
00:00 How To Refresh Bookmark Favicons In Chrome
00:31 Accepted Answer Score 56
00:55 Answer 2 Score 39
01:19 Answer 3 Score 12
02:50 Answer 4 Score 10
03:16 Answer 5 Score 6
03:38 Thank you

--

Full question
https://superuser.com/questions/375321/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#googlechrome #browser #bookmarks #favicon

#avk47



ACCEPTED ANSWER

Score 56


Have you tried clearing the cache then restarting Chrome? Try that first. If it doesn’t work, then you’ll have to force it as follows.

  1. Close Chrome
  2. Open your User Data folder
  3. Delete the Favicons file
  4. Run Chrome
  5. Visit sites to force the icons to be re-downloaded



ANSWER 2

Score 39


Did you try to force the refresh when you are on the page and press Ctrl + R?

[EDIT] (Credits to James, see his comment) try to refresh and empty the cache with Ctrl + Shift+ R

[Source on Google Chrome Help Forum]




ANSWER 3

Score 12


My issue was that despite deleting the favicon for a locally hosted site, Chrome still displayed it.

This comment on a Chromium issue says:

Favicons are not stored in the cache, they're stored in one of the SQLite databases. So they don't get cleared with the cache. This is a good thing since all your bookmarks would lose their icons until you visited them again.

This explains why clearing my cache did not solve the problem.

Here's what I did to clear the favicons for my site:

  1. Closed Chrome in order to release its file locks
  2. Downloaded the appropriate SQLite command-line shell for my OS
  3. Extracted the archive
  4. Opened my user data directory
  5. Deleted the Favicons-journal file
  6. Copied my Favicons file into the same directory as the SQLite command-line shell
  7. Opened Command Prompt
  8. Changed directory to that which contains the SQLite command-line shell
  9. Executed sqlite3 from Command Prompt
  10. Ran the SQL which follows this list
  11. Moved the Favicons file from my SQLite command-line shell directory back into my user data directory
.open Favicons

DELETE FROM
    favicons
WHERE
    id
IN (
    SELECT
        icon_id
    FROM
        icon_mapping
    WHERE
        page_url
    LIKE
        '%localhost:%'
);

DELETE FROM
    favicon_bitmaps
WHERE
    icon_id
IN (
    SELECT
        icon_id
    FROM
        icon_mapping
    WHERE
        page_url
    LIKE
        '%localhost:%'
);

DELETE FROM
    icon_mapping
WHERE
    page_url
LIKE
    '%localhost:%'
;

Adjust this to suit the URLs which you wish to clear the favicons for. In my case, the targeted URLs were along the lines of http://localhost:8000/.




ANSWER 4

Score 10


Actually all you need is to browse to www.site.com/favicon.ico and you will see the cached old icon, click refresh (ctrl+shift+R) or (ctrl+F5) and you will see the new one. Go back to www.site.com and enjoy the new favicon.




ANSWER 5

Score 6


Looked through suggestions to change “stuck” favicons in my bookmarks bar. I took the easy way out and installed the extension Bookmark Favicon Changer.

It took me 5 minutes to fix the problem that had been bugging me for months – and that’s including deleting the extension after use!