您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Expand the video on livestream.com while keeping the chat visible
// ==UserScript== // @name livestream.com Widescreen tweak // @description Expand the video on livestream.com while keeping the chat visible // @icon https://lh4.googleusercontent.com/-HR473IkG4L8/AAAAAAAAAAI/AAAAAAAAE2E/tgp7xxNk6dI/s46-c-k-no/photo.jpg // @version 0.3.2 // @license GNU General Public License v3 // @copyright 2014, Nickel // @grant GM_addStyle // @include *://www.livestream.com/* // @namespace https://gf.qytechs.cn/users/10797 // ==/UserScript== (function(){ // don't run in frames if (frameElement){ return; } // fallback (Chrome lacks GM functions) if( typeof GM_addStyle != 'function' ) { function GM_addStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if( !head ){ return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } } // expand document.getElementById("content").classList.add("expanded"); document.getElementById("expand-channel-player").classList.add("expanded"); // fix widths GM_addStyle("#main {width:1280px !important;}"); GM_addStyle("#main-top {width:1310px !important;}"); GM_addStyle("#top-header {width:1280px !important;}"); GM_addStyle("#main-bottom {width:1310px !important;}"); GM_addStyle("#top-bottom {width:1280px !important;}"); GM_addStyle("#footer-main-bottom {width:1280px !important;}"); GM_addStyle("#main .box-wrap:not(#channel-chat):not(#like):not(#adContainer):not(#related-channels) {width:912px !important;}"); GM_addStyle("#main #channel-about .content {width:720px !important;}"); GM_addStyle("#main .box .footer {width:910px !important;}"); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址