chrome 扩展中的弹出脚本多次发送消息

Popup-script in chrome extension sends messages several times

我有我的 pop-up script for chrome-extension 可以计算页面上的字数。因此,当我单击插件工具栏图标时,它开始加载并向 content-script 发送消息,在 return 中 content-script 回复页面上的字数统计信息。

var Popup = (function () {
    function Popup() {
        chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
            var message = {};
            chrome.tabs.sendMessage(tabs[0].id, message, function (response) {
                alert("!");  // I can see this alert many times (1..4)
                    var count = response.data;
                    if (count != 1) {
                        document.getElementById("word-count").innerText = count;
                    }
            });
        });
    }
    return Popup;
})();
new Popup();

问题是 sendMessage 调用了多次(弹出脚本本身只加载一次)。

有时它会调用 sendMessage 1 次,有时会调用 2、3、4 次,但对于某些页面(如堆栈溢出站点)仅调用一次。

问:我想知道为什么会这样?

更新:

仅供参考:我只有 one/active 选项卡的权限,这是我的 manifest.json:

中的内容
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage"
  ]

内容脚本部分:

  "content_scripts": [
    {
      "matches": ["*://*/*"],
      "css": ["css/content.css"],
      "all_frames" : true,
      "js": [

        "lib/jquery/jquery.min.js",
        "lib/jquery/jquery.min.map",

        "src/msg/IMessage.js",
        "src/msg/IMessage.ts",


        "src/content/IFrame.js",
        "src/content/IFrame.ts",   
        "src/content/Content.js"
      ]
    }
  ],

来自https://developer.chrome.com/extensions/tabs#method-sendMessage

Sends a single message to the content script(s) in the specified tab, with an optional callback to run when a response is sent back. The runtime.onMessage event is fired in each content script running in the specified tab for the current extension.

这意味着如果选项卡上的 <iframe> 中有内容脚本 运行,那么它们也会被执行。

我的问题(也)在清单中 content_scripts":

"all_frames" : true

(现在我设置为false

根据页面上的框架数量,它不断创建内容脚本实例..