Chrome扩展程序将侦听器添加到内容脚本

时间:2019-07-10 23:09:20

标签: google-chrome google-chrome-extension

是否可以向内容脚本添加均匀的侦听器?

我想发送一条消息chrome.runtime.sendMessage("hello"),并在另一个内容脚本中收听。但是,只会通知background.js中的侦听器,而不会通知second_script.js中的侦听器。

是否可以收听内容脚本中的消息?如果是这样,怎么办?

chrome.runtime.onMessage.addListener(function(request, sender, sendResponse){
  console.log(request)
  return true
});

0 个答案:

没有答案