// ==UserScript== // @name 战旗老e网页全屏 // @namespace http://pansx.net/ // @version 0.4 // @description 使老e直播变为网页全屏 // @author pansx // @match https://www.zhanqi.tv/edmunddzhang // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... $("body").css("overflow","hidden"); $("body").prepend($("#js-flash-layer")); setInterval( () => { $("body>*").hide(); $("#js-flash-layer").show(); $("#js-flash-layer *").css("opacity","0"); $("#js-flash-layer object,#js-flash-panel").css("opacity","1"); $("#js-flash-layer div").css("width",document.documentElement.clientWidth ); $("#js-flash-layer object").css("height",document.documentElement.clientHeight ); },1000 ); })();