我的Chrome扩展程序在版本48上运行得非常好,但出于某种原因,我没有在49版本上工作,并且无法在其发布/更改日志中找到任何内容。
不起作用的部分是传递信息。
Backgound页面:
chrome.runtime.onMessage.addListener(function(msg, sender){
console.log(msg);
});
chrome.runtime.sendMessage({info:"this is a test"});
这不会在版本49上输出任何内容,但会在版本48上输出。
我该如何解决这个问题?