Greasy Fork is available in English.
使老e直播变为网页全屏
当前为
// ==UserScript==
// @name 战旗老e网页全屏
// @namespace http://pansx.net/
// @version 0.5
// @description 使老e直播变为网页全屏
// @author pansx
// @match https://www.zhanqi.tv/edmunddzhang
// @grant 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");
$(".barrage__lists>div>*").css("opacity","1").parents().css("opacity","1");
$("video").css("opacity","1").parents().css("opacity","1");
$("#js-flash-layer div").css("width",document.documentElement.clientWidth );
$("#js-flash-layer object,#js-video").css("height",document.documentElement.clientHeight ).parents().css("height",document.documentElement.clientHeight );
},1000
);
})();