// ==UserScript== // @name 路透社弹窗关闭 // @namespace Violentmonkey Scripts // @match https://www.reuters.com/* // @grant none // @version 1.1 // @author - // @description 2023/11/14 12:35:28 // @downloadURL none // ==/UserScript== console.log('未发现弹窗'); // 定时器每0.5秒检测一次目标元素 var checkElementInterval = setInterval(function() { // 选择要删除的元素 var element = document.getElementsByClassName("fEy1Z2XT")[0]; // 获取 元素 var htmlElement = document.documentElement; // 允许滚动 htmlElement.style.overflow = "auto"; // 或者,如果你想完全移除 overflow 样式,让浏览器采用默认行为 // htmlElement.style.overflow = ""; // 检查是否成功获取到元素 if (element) { // 停止定时器 //clearInterval(checkElementInterval);//如果运行失败就注释掉这一行,让其一直重复检测 // 删除元素 element.remove(); console.log('关闭弹窗'); } }, 100); // 100 毫秒(即 0.1 秒)之后执行一次检测