修复Safari-iqiyi网页全屏失效

try to take over the world!

  1. // ==UserScript==
  2. // @name 修复Safari-iqiyi网页全屏失效
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Jeffrey.Deng
  7. // @supportURL https://imcoder.site/u/center/sendLetter?chatuid=1016726508048
  8. // @homepageURL https://imcoder.site
  9. // @weibo http://weibo.com/3983281402
  10. // @match https://www.iqiyi.com/v_*.html*
  11. // @grant GM_addStyle
  12.  
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17.  
  18. const addGlobalStyle = GM_addStyle || function addGlobalStyle(css) {
  19. var head, style;
  20. head = document.getElementsByTagName('html')[0];
  21. if (!head) { return; }
  22. style = document.createElement('style');
  23. style.type = 'text/css';
  24. style.innerHTML = css;
  25. head.appendChild(style);
  26. return style;
  27. };
  28.  
  29. setTimeout(function () {
  30. addGlobalStyle(
  31. //'.iqp-player.iqp-web-screen {' +
  32. //' display: unset;' +
  33. //'}' +
  34. '.iqp-player[data-player-hook="container"] {' +
  35. ' display: unset;' +
  36. '}'
  37. );
  38. }, 1700);
  39. })();

QingJ © 2025

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