google chrome extension: i have added a context menu to the browser, how to I popup the popup开发者_运维问答.html on click on the context menu item ?
Send a request to a content script in a tab where the menu item was clicked. In the content script get popup.html url by calling chrome.extension.getURL("popup.html")
and then display this url in a popup like you normally would.
精彩评论