取消爱奇艺暂停广告

fuck爱奇艺暂停广告

目前为 2023-09-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         取消爱奇艺暂停广告
// @namespace    http://bmmmd.com/
// @version      0.3
// @description  fuck爱奇艺暂停广告
// @match        https://www.iqiyi.com/*
// @run-at       document-idle
// @license      GPL v3
// ==/UserScript==

(function () {
    'use strict';

    const observer = new MutationObserver(function () {
        const btnplaypause = document.querySelectorAll('[data-player-hook="btnplaypause"]');
        if (btnplaypause.length == 0) { return; }
        observer.disconnect();

        const video = document.querySelector("video");

        // 点击视频
        video.addEventListener("click", (event) => {
            video.paused ? video.play() : video.pause();
            event.stopPropagation();
        }, true);
        // 暂停按钮
        btnplaypause.forEach((items) => {
            items.addEventListener("click", (event) => {
                video.paused ? video.play() : video.pause();
                event.stopPropagation();
            }, true);
        });
        // 空格
        document.addEventListener("keydown", (event) => {
            if (event.code == "Space") {
                video.paused ? video.play() : video.pause();
                event.stopPropagation();
            }
        }, true);
    });
    if (document.querySelector('.iqp-player')) {
        observer.observe(document.querySelector('.iqp-player'), { childList: true, subtree: true });
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址