anime1 網頁全螢幕

影片網頁全螢幕

目前为 2019-01-12 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name anime1 網頁全螢幕
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description 影片網頁全螢幕
  6. // @author Kimika
  7. // @match https://anime1.me/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. try{
  15. var video = document.querySelector('.entry-content iframe');
  16. video.style.width = '100vw';
  17. video.style.height = '100vh';
  18. video.style.position = 'absolute';
  19. video.style.top = '0';
  20. video.style.left = '0';
  21. video.style.zIndex = '1';
  22. }catch(e){
  23. console.log('video player not found');
  24. }
  25. })();

QingJ © 2025

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