谷歌瀏覽器擴展程序。 console.log在addListener中不起作用,但在addListener外部正常工作。我重新安裝了。我已經在Windows和MacOS上嘗試了這一點。console.log不能在chrome.runtime.onMessage.addListener中工作
chrome.runtime.onMessage.addListener(
function(request, sender, sendResponse) {
console.log("listen"); // this does not
alert("got here"); // this works
}
);
您發送了消息嗎? –
我剛編輯了原始示例。該警報確實有效,但console.log沒有。 –
這個代碼在哪裏?你在哪裏查看日誌? –