您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disables Foxnews floating video on scrolling down
// ==UserScript== // @name Foxnews - close sticky video // @description Disables Foxnews floating video on scrolling down // @namespace https://greasyfork.org/en/users/758587-barn852 // @version 1.1 // @author barn852 // @include http*://*.foxnews.com/* // @include http*://*.foxbusiness.com/* // @grant none // @noframes // ==/UserScript== // source: http://forums.mozillazine.org/viewtopic.php?p=14752083#p14752083 setTimeout(function handler() { var element = document.querySelector("a.close"); if (element && document.querySelector(".featured-video.sticky-video")) { element.click(); } else { setTimeout(handler, 100); } }, 1000);