我正在尝试在右键单击时更改contextMenu中的文本,但它不起作用。这是我到目前为止所拥有的。有什么想法吗?
function getword(info,tab) {
chrome.contextMenus.update('contextMenuId', {
title: "New text"
});
}
chrome.contextMenus.create({
'id': 'contextMenuId',
title: "First text",
contexts:["selection"],
onclick: getword
});