爱壹帆播放器优化

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);
    });
})();