我有一个带有这个头文件的tampermonkey脚本:
// ==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/页面上点击火狐工具栏中的篡改猴子图标时,就会出现这个脚本。为什么?
发布于 2021-05-14 09:52:34
因为该页面包含一个iframe,并且该iframe链接到news.google.com:

用户脚本在iframe中运行,当它们运行时,它们会被添加到顶部的top猴子图标中。
https://stackoverflow.com/questions/67528112
复制相似问题