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