我试图写一个Opera扩展程序。我需要在用户点击提交按钮时将页面添加到收藏夹。 例如,有一个网页:
<html>
....
<input id="button-submit" type="submit" value="Submit" onclick="doSomething();">
...
</html>
我希望制作一个扩展程序,在用户点击提交时提供其他操作(创建书签)。我写了一些东西,但它不起作用:
var button = document.getElementById('button-submit');
button.addEventListener("click", function() {
chrome.bookmarks.create({'parentId': 1,
'title': 'My extension'});
});
请帮助:)