我在我的项目中使用VueJS和Laravel。这个问题最近开始出现,甚至在旧的git分支中也出现了。

此错误仅在Chrome浏览器中显示。


当前回答

确保您使用了正确的语法。

我们应该在监听sendMessage()方法后使用它。

下面是contentScript.js的一个简单例子,它向app.js发送请求。

contentScript.js

chrome.extension.sendRequest({
    title: 'giveSomeTitle', params: paramsToSend
  }, function(result) { 
    // Do Some action
});

app.js

chrome.extension.onRequest.addListener( function(message, sender, 
 sendResponse) {
  if(message.title === 'giveSomeTitle'){
    // Do some action with message.params
    sendResponse(true);
  }
});

其他回答

确保您使用了正确的语法。

我们应该在监听sendMessage()方法后使用它。

下面是contentScript.js的一个简单例子,它向app.js发送请求。

contentScript.js

chrome.extension.sendRequest({
    title: 'giveSomeTitle', params: paramsToSend
  }, function(result) { 
    // Do Some action
});

app.js

chrome.extension.onRequest.addListener( function(message, sender, 
 sendResponse) {
  if(message.title === 'giveSomeTitle'){
    // Do some action with message.params
    sendResponse(true);
  }
});

诺顿安全Web扩展chrome抛出这个错误信息为我。在我禁用这个扩展后,错误消息消失了。

这里晚了,但在我的情况下,它是卡巴斯基云保护扩展。我禁用了它。一切都很顺利。

我在Chrome中禁用了所有已安装的扩展-为我工作。 我现在已经清除控制台没有错误。

我在react项目运行中遇到了同样的错误。

这个错误来自我的chrome浏览器

IObit冲浪保护 2.2.7

扩展。我的错误扩展被解决了。

如果你面临同样的错误,首先关闭你的chrome广告拦截器或任何其他扩展,而运行。