// ==UserScript== // @name 爱壹帆播放器优化 // @namespace http://tampermonkey.net/ // @version 2025-04-07 // @description 爱壹帆播放器显示优化,去除侧边广告及全宽显示 // @author justfunc // @match *://*.iyf.tv/* // @match *://*.yfsp.tv/* // @license GPL // @icon https://www.google.com/s2/favicons?sz=64&domain=iyf.tv // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... window.addEventListener('load', () => { // 初始隐藏 const hideDualClassDivs = () => { document.querySelectorAll('div.ps.pggf').forEach(div => { div.style.display = 'none'; }); document.querySelectorAll('div.page-container.video-player').forEach(div => { div.style.width = '100%'; div.style.height= 'auto'; }); document.querySelectorAll('div.aa-videoplayer-wrap').forEach(div => { div.style.setProperty('height', 'auto','important'); }); document.querySelectorAll('div.video-box.ng-star-inserted').forEach(div => { div.style.height = 'auto'; }); height }; hideDualClassDivs(); // 监听后续动态变化 const observer = new MutationObserver(hideDualClassDivs); observer.observe(document.body, { childList: true, subtree: true }); }); })();