aboutsummaryrefslogtreecommitdiff
path: root/src/background/shared/bookmarks.js
blob: 5e7927b4aad8958722a53ce301a3d51b31e15799 (plain) (blame)
1
2
3
4
5
6
7
8
9
const create = (title, url) => {
  return browser.bookmarks.create({
    type: 'bookmark',
    title,
    url,
  });
};

export { create };