您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Geforce now ad blocker! Mutes, and hides video, and continues to play ads even when you're not on the website! Dm me on discord if it breaks at ._._.dustin
// ==UserScript== // @name Geforce Now Ad Blocker // @namespace GeforceNowAdBlocker // @version 0.3 // @description Geforce now ad blocker! Mutes, and hides video, and continues to play ads even when you're not on the website! Dm me on discord if it breaks at ._._.dustin // @author Dustin // @match https://play.geforcenow.com/* // @icon https://play.geforcenow.com/mall/assets/img/GFN_logo1024_v2.png // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; Object.defineProperty(document, 'hidden', { get: () => false }); function checkForVideo() { const video = document.getElementById('preStreamVideo'); if (video) { video.style.width = '0.1px'; video.style.height = '0.1px'; video.muted = true; const observer = new MutationObserver(() => { if (!document.contains(video)) { alert("Ads finished playing!"); observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); } } const interval = setInterval(() => { if (document.getElementById('preStreamVideo')) { clearInterval(interval); checkForVideo(); } }, 1000); })();