1 2 3 4 5 6 7 8 9
const create = (title, url) => { return browser.bookmarks.create({ type: 'bookmark', title, url, }); }; export { create };