// ==UserScript== // @name 战旗老e网页全屏 // @namespace http://pansx.net/ // @version 0.3 // @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"); $("#js-pull-ads-layer").hide(); $(".live-room-side").hide(); $(".room-star-bottom-skin").hide(); $("body").prepend($("#js-flash-layer")); setInterval( () => { $(".sdk-zhanqiMall").hide(); $(".callVideoGroup").hide(); $("#js-flash-layer div").css("width",document.documentElement.clientWidth ); $("#js-flash-layer object").css("height",document.documentElement.clientHeight ); },1000 ); })();