Retrieve bookmarks from different browsers.
$ npm install --save browser-bookmarks
const browserBookmarks = require('browser-bookmarks');
// retrieve bookmarks from Chrome (returns a Promise)
browserBookmarks.getChrome().then(bookmarks => {
console.log(bookmarks);
});
Returns a Promise with an array of Bookmarks objects.
The bookmark title.
Type: String
The bookmark URL.
Type: String
The bookmark icon.
Type: String
The folder in which the bookmark item belongs.
Type: String
MIT © Vu Tran