Reputation: 13456
I am trying to write a Cocoa App that needs to manipulate Chrome Bookmarks. What is the best way to get access to Chrome bookmarks to allow insertion, deletion, updating.
Upvotes: 1
Views: 260
Reputation: 8281
Chrome stores its bookmarks in a simple text file called Bookmarks which (on OS X) is stored in the user home directory, $HOME/Library/Application Support/Google/Chrome/Default/Bookmarks
. It's a JSON file for which I guess there are several libraries API available. (like this one)
If you mean to directly manipulate the bookmarks stored in Google cloud, check this link.
Upvotes: 1