将这个脚本内容复制油猴插件中,新建插件后直接运行
// ==UserScript==
// @name 理工网页全屏
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://*/*
// @match https://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
var videos = document.getElementById('live_video');
videos.style="width: 100%;height: 100%;"
})();