i'm trying to write an Opera extension. I need to add a page to favourites when user click submit button. For example there is a web page:
<html>
....
<input id="button-submit" type="submit" value="Submit" onclick="doSomething();">
...
</html>
and i want to make an extension that provides additional action (create bookmark) when user click submit. I wrote something, but it doesn't work:
var button = document.getElementById('button-submit');
button.addEventListener("click", function() {
chrome.bookmarks.create({'parentId': 1,
'title': 'My extension'});
});
Please help :)