我在将消息从 Chrome 扩展程序 (popup.html) 发送到在选定选项卡中注入的脚本时遇到问题。popup.html 中的代码如下:
alert("sending MSG");
chrome.tabs.sendMessage(null, {greeting: "hello"}, function(response) {
console.log(response.farewell);
});
alert("MSG send");
问题是只显示“正在发送消息”警报,但没有显示第二个警报“已发送消息”。就像它在阻止代码一样。
即使我使用此功能:
chrome.tabs.getSelected(null, function(tab) {
chrome.tabs.sendMessage(tab.id, {greeting: "hello"}, function(response) {
console.log(response.farewell); alert("MSG sent _ in");
});
});
alert("MSG send _ out");
在这里我遇到了同样的问题:显示了“MSG send _ out”,但没有显示“MSG send _ in”。如果有人对这个问题有任何想法,请告诉我。