Chrome extension > contextMenus Api > can not add onclick handler
问题 I am trying to create a chrome extension. Currently I am about to create context menu for my extension, which will do something when I click on it. So, following google documentation i create parent. chrome.contextMenus.create({title: "bla", id: "parent"}); Then I create child and try to add onclick handler to it. chrome.contextMenus.create({ title: "bla bla", parentId: "parent", id: "child", onclick : function() { alert("bla bla bla") } }); So, its works fine without onclick, and not works