爱壹帆播放器优化

爱壹帆播放器显示优化,去除侧边广告及全宽显示

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         爱壹帆播放器优化
// @namespace    https://github.com/justfunc/
// @version      1.0.0.3
// @description  爱壹帆播放器显示优化,去除侧边广告及全宽显示
// @author       justfunc
// @match        *://*.iyf.tv/*
// @match        *://*.yfsp.tv/*
// @match        *://*.wyav.tv/*
// @license      GPL
// @icon         https://www.google.com/s2/favicons?sz=64&domain=iyf.tv
// @grant        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';
            });
        };
        settimeout(()=>{
            hideDualClassDivs();
            // 监听后续动态变化
            // const observer = new MutationObserver(hideDualClassDivs);
            // observer.observe(document.body, {
            //     childList: true,
            //     subtree: true
            // });
        },100);
    });
})();