Greasy Fork

来自缓存

爱奇艺防标题剧透

会自动隐藏播放页及播放列表页面的标题

// ==UserScript==
// @name         爱奇艺防标题剧透
// @description  会自动隐藏播放页及播放列表页面的标题
// @version      1.0.2                         
// @author       You
// @match        https://www.iqiyi.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=iqiyi.com
// @grant        none
// @license MIT
// @namespace https://greasyfork.org/users/1373035
// ==/UserScript==

(function() {
    'use strict';

    setInterval(() => {
        let titleDIVS = document.getElementsByClassName("iqp-top-title")
        if (titleDIVS) {
            console.log("识别到标题");
            titleDIVS[0].style.display = "none"
            let titleNavs = document.getElementsByClassName("episodes_title__Fcalw")
            for (let item of titleNavs) {
                item.style.display = "none"
            }
        }
    }, 500);



})();