爱奇艺防标题剧透

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

  1. // ==UserScript==
  2. // @name 爱奇艺防标题剧透
  3. // @description 会自动隐藏播放页及播放列表页面的标题
  4. // @version 1.0.2
  5. // @author You
  6. // @match https://www.iqiyi.com/*
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=iqiyi.com
  8. // @grant none
  9. // @license MIT
  10. // @namespace https://gf.qytechs.cn/users/1373035
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. setInterval(() => {
  17. let titleDIVS = document.getElementsByClassName("iqp-top-title")
  18. if (titleDIVS) {
  19. console.log("识别到标题");
  20. titleDIVS[0].style.display = "none"
  21. let titleNavs = document.getElementsByClassName("episodes_title__Fcalw")
  22. for (let item of titleNavs) {
  23. item.style.display = "none"
  24. }
  25. }
  26. }, 500);
  27.  
  28.  
  29.  
  30. })();

QingJ © 2025

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