Google Chrome Bookmarks File ((install))
"date_added": "13345678901234567", "guid": "some-uuid", "id": "123", "name": "Example", "type": "url", // or "folder" "url": "https://...", "children": [ ... ] // only for folders
If you delete a bookmark and later need it: google chrome bookmarks file
While the Bookmarks file may seem like a mundane piece of data, it holds a surprising amount of power. Here are some interesting things you can do with the Bookmarks file: // or "folder" "url": "https://..."
# List all bookmark URLs in bookmark bar jq '.roots.bookmark_bar.children[] | select(.type=="url") | .url' Bookmarks google chrome bookmarks file
walk(data["roots"]["bookmark_bar"])