您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the 'FanZone' sidebar and centers the video player on the screen
// ==UserScript== // @name FanZone Removed - DAZN // @namespace http://tampermonkey.net/ // @version 4.0 // @description Removes the 'FanZone' sidebar and centers the video player on the screen // @author ChatGPT // @match https://www.dazn.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function removeFanZone() { const elements = document.querySelectorAll('*'); elements.forEach(el => { if ( el.textContent?.trim() === 'FanZone' && el.offsetParent !== null // È visibile ) { let parent = el.closest('aside') || el.closest('div'); if (parent) { console.log('FanZone rimossa:', parent); parent.style.display = 'none'; } } }); } // Osserva continuamente cambiamenti nel DOM const observer = new MutationObserver(() => { removeFanZone(); }); observer.observe(document.body, { childList: true, subtree: true }); // Tentativi periodici per sicurezza setInterval(removeFanZone, 1500); // Prima chiamata removeFanZone(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址