Google Chrome stores your saved bookmarks, often called favorites, in a structured JSON file that is separate from the browser’s executable code. This design keeps your sign-in data and personal preferences isolated, which allows the browser to reset cleanly without destroying your saved links. Understanding the exact location of this file helps you back up, migrate, or troubleshoot your collection when switching devices or reinstalling the operating system.
Default Paths for Windows, macOS, and Linux
On each operating system, Chrome follows a consistent folder hierarchy so that support tools and power users can reliably locate the data. The core file is named "Bookmarks" and it lives in a user-specific profile directory that reflects your operating system and user account name.
Windows 10 and 11
On Windows, the path follows your user folder structure and does not change with Chrome updates unless the browser switches to a new user data directory format. You can reach it quickly by pasting the location into File Explorer address bar.
%LOCALAPPDATA%\Google\Chrome\User Data\Default\Bookmarks
macOS
Apple’s operating system uses the Library folder, which is hidden by default in the graphical interface to prevent accidental changes. You must reveal the full path to access the Bookmarks file directly.
~/Library/Application Support/Google/Chrome/Default/Bookmarks
Linux
On Linux distributions, the file follows the XDG-based directory standards used by most modern desktop environments. The location is consistent across distributions as long as you use the standard profile.
~/.config/google-chrome/Default/Bookmarks
Locating the File Through Chrome Itself You do not need to navigate the file system if you only want to open or export your bookmarks within Chrome. The built-in importer and exporter provide a safe graphical interface that avoids manual file handling. Using the Bookmark Manager Open the Bookmark Manager by pressing Ctrl + Shift + O on Windows or Linux, or Command + Option + B on macOS. From there, click the three-dot menu and choose "Export bookmarks" to create a backup JSON file, or "Import bookmarks" to restore a previously saved file. Understanding the Bookmarks JSON Structure The Bookmarks file is a plain text JSON document that organizes your links in a tree structure. At the top level, you have bookmarks bar, other bookmarks, and mobile bookmarks if you use Chrome on Android or iOS. Each entry contains the URL, name, creation date, and potentially unique identifiers that help sync the item across devices when signed in. Manual Editing and Risks
You do not need to navigate the file system if you only want to open or export your bookmarks within Chrome. The built-in importer and exporter provide a safe graphical interface that avoids manual file handling.
Using the Bookmark Manager
Open the Bookmark Manager by pressing Ctrl + Shift + O on Windows or Linux, or Command + Option + B on macOS. From there, click the three-dot menu and choose "Export bookmarks" to create a backup JSON file, or "Import bookmarks" to restore a previously saved file.
The Bookmarks file is a plain text JSON document that organizes your links in a tree structure. At the top level, you have bookmarks bar, other bookmarks, and mobile bookmarks if you use Chrome on Android or iOS. Each entry contains the URL, name, creation date, and potentially unique identifiers that help sync the item across devices when signed in.
Because the file is text-based, advanced users can edit it with any code-friendly text editor to add, remove, or modify entries programmatically. However, Chrome locks the file while the application is running, so direct edits require you to close the browser first. A single syntax error, such as a missing comma or an extra bracket, can corrupt the entire file, so creating a backup copy is essential before making changes.
Sync and Cloud Storage Interaction
When you sign into Chrome with a Google account and enable sync, the contents of your Bookmarks file are encrypted and uploaded to Google’s servers. On other devices where you sign in, Chrome downloads this data and writes it into the local Bookmarks file, which means your favorites follow your account rather than being tied to a single machine. This process allows seamless continuity between desktop, Android, and iOS installations.