Skip to content

Instantly share code, notes, and snippets.

@alejandrocoding
Created June 24, 2020 11:30
Show Gist options
  • Save alejandrocoding/9d9d015d8ce4a85279706d56e96560cd to your computer and use it in GitHub Desktop.
Save alejandrocoding/9d9d015d8ce4a85279706d56e96560cd to your computer and use it in GitHub Desktop.
Attempt of use forbidden - bookmark API from contentScript
console.log('Starting contentScript');
chrome.bookmarks.create(
{
parentId: null,
title: 'My first BookMark from Extension!'
},
(newFolder) => console.log('added folder: ' + newFolder.title)
);
console.log('Ending contentScript');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment