63

I'm trying to recover a Windows system from backups and can't seem to find where Chrome saves its bookmarks.

Does anybody know where Chrome saves its bookmarks on Windows?

Hennes
  • 65,804
  • 7
  • 115
  • 169
cfischer
  • 9,163

3 Answers3

76

%LOCALAPPDATA%\Google\Chrome\User Data\Default

Go to that folder and you can see a file with a name "Bookmarks".

kinokijuf
  • 8,364
10

On my PC (Windows Vista) i can find the bookmarks file (and also cache/history/etc.) in this location:

C:\Users\username\AppData\Local\Google\Chrome\User Data\Default
zackrspv
  • 1,893
Ivan
  • 285
3

You can use the built-in Bookmark Manager by typing

chrome://bookmarks/

in Chrome's address bar.

The bookmarks are stored in the "bookmarks" and the "Bookmarks.bak" files which are located in these locations:
In Windows XP and older versions:
%USERPROFILE%\Local Settings\Application Data\Google\Chrome\User Data\Default
or
C:\Documents and Settings\username\Local Settings\Application Data\Google\Chrome\User Data\Default

In Windows Vista and newer versions:
%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default
or
C:\Users\username\AppData\Local\Google\Chrome\User Data\Default

You can open these files with notepad and see their content.

Please note that in Chrome's newer versions instead of the "Default" folder there will be a "Profile 1" folder.

Oz Edri
  • 435