在 Chrome 扩展程序中从 popup.js 向 background.js 发送消息(并获得响应)的正确方法是什么?我尝试的每种方法都会出现以下错误:
“端口:无法建立连接。接收端不存在。”
我更喜欢使用 chrome.extension.sendMessage() 而不是 chrome.extension.connect() 和 port.postMessage(),但是这两种方法似乎都没有奏效。
我想要做的是在popup.html中连接一个按钮来调用popup.js中的一些javascript,这些javascript回调到background.js以获取有关topMost的currentTab()的信息(即:获取要在 popup.html 中显示的当前 URL 字符串)
现在在popup.js中(连接到按钮的操作)我有:
function getURL()
{
chrome.extension.sendMessage({greeting: "GetURL"},
function(response) { tabURL = response.navURL });
$("#tabURL").text(tabURL);
}
在background.js我有:
chrome.extension.onMessage.addListener( function(request,sender,sendResponse)
{
if( request.greeting == "GetURL" )
{
var tabURL = "Not set yet";
chrome.tabs.getCurrent(function(tab){
tabURL = tab.url;
});
sendResponse( {navURL:tabURL} );
}
}
有任何想法吗?