Where Does Google Chrome Save Bookmarks -
So you have found the Bookmarks file. What is inside?
Open it with any text editor (Notepad, VS Code, TextEdit, etc.). You will see a long, structured text file in JSON format (JavaScript Object Notation).
It looks something like this:
"checksum": "32a3b1c5e4f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1",
"roots":
"bookmark_bar":
"children": [
"name": "Google",
"type": "url",
"url": "https://www.google.com"
,
"name": "Work Folder",
"type": "folder",
"children": [ ... ]
]
,
"other": ... ,
"synced": ...
Bookmarks (or “favorites”) are a fundamental feature of modern web browsers, allowing users to save and organize URLs for later access. Despite the increasing prominence of cloud-based synchronization, Chrome still relies on local file storage as the primary persistence mechanism. Understanding the physical location of these files is critical for tasks such as manual backup, migration between computers, forensic analysis, and troubleshooting sync errors.
This paper answers the central question—where does Google Chrome save bookmarks?—by breaking it down into three parts: the default file paths per operating system, the format and structure of the Bookmarks file, and the role of backup and synchronization mechanisms. where does google chrome save bookmarks
Instead of hunting for the physical file, use Chrome’s built-in Bookmark Manager:
To restore: Use Import bookmarks from the same menu. So you have found the Bookmarks file
💡 HTML exports are great for transferring bookmarks to another browser. The JSON
Bookmarksfile is better for full restores with folder structure.
"roots":
"bookmark_bar":
"children": [
"guid": "abc123...",
"name": "Google",
"type": "url",
"url": "https://www.google.com",
"date_added": "13300000000000000"
],
"name": "Bookmarks bar",
"type": "folder"
,
"version": 1
The Bookmarks file is a UTF-8 encoded JSON file. Its structure is hierarchical and can be broadly divided into three main objects: roots, sync_transaction_version, and version. Bookmarks (or “favorites”) are a fundamental feature of
Google Chrome, as the world’s most widely used web browser, manages a complex ecosystem of user data, including bookmarks. While the average user interacts with bookmarks through the Bookmark Manager or the star icon, the actual storage mechanism involves operating system-specific file paths, structured data formats (JSON), and synchronization protocols. This paper provides a comprehensive examination of where Google Chrome stores bookmarks locally across Windows, macOS, and Linux, the technical structure of the bookmark file, the purpose of backup files, and the implications for data recovery, privacy, and system administration.
Here is the answer to where Google Chrome saves bookmarks, broken down by operating system.