Programmatically Access Google Chrome Bookmarks

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

+6
source share
1 answer

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

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

Hope this helps!

Related topic: Managing Google Chrome entries from an external program (and Chrome notification)

+1
source

Source: https://habr.com/ru/post/948098/


All Articles