When I selected some text, the context menu title is updated. For instance:
Is it possible to do this as an extension developer?
My current code:
chrome.contextMenus.create({
"title":"I WANT THIS UPDATED",
"contexts":["browser_action"],
"onclick":function(info, tab) {
chrome.tabs.create({url: 'https://www.facebook.com/'});
}
});
Thanks,