为什么 https://news.google.com/* 的 tampermonkey 脚本出现在 https://www.nytimes.com/ 的菜单中?

Why does a tampermonkey script for https://news.google.com/* appear in the menu for https://www.nytimes.com/?

我有一个 tampermonkey 脚本 header:

// ==UserScript==
// @name         Google News - Remove old articles
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Remove articles that already appeared recently
// @author       AC
// @require      http://code.jquery.com/jquery-latest.js
// @match        https://news.google.com/*
// @icon         https://www.google.com/s2/favicons?domain=google.com
// @grant        none
// ==/UserScript==

当我在页面 https://www.nytimes.com/ 上单击 Firefox 工具栏中的 tampermonkey 图标时,会出现此脚本。为什么?

因为该页面包含一个 iframe,并且该 iframe 链接到 news.google.com:

iframe 中的用户脚本 运行,当它们出现时,它们会被添加到顶部的 Tampermonkey 图标中。