themirror
themirror

Reputation: 10287

Programmatically access Google Chrome bookmarks

How can I programmatically get (and manipulate) my bookmarks that are synced between different instances of Google Chrome using my Google account?

Upvotes: 10

Views: 2829

Answers (1)

Sarbjeet Johal
Sarbjeet Johal

Reputation: 41

It looks like a JSON object stored in "C:\Users\\AppData\Local\Google\Chrome\User Data\Default" folder. File name is Bookmarks

You can parse it using any JavaScript, Java (or any other language) Lib.

Hope that helps!

A related thread: Manipulating Google Chrome bookmarks from external program (and make Chrome aware)?

Upvotes: 4

Related Questions