Get maximized video-and-chat view with no margins on YouTube Live or Premieres.
< 腳本YouTube Live Filled Up View的回應
4Kモニターでliveを見るときに助かっています!ありがとうございます。 勝手に以下の2点をカスタマイズして使っているので、あまりいいコードではないかもしれませんが、同じユーザーの助けになれば・・! (更新されたら使えないかも)
コメントなしに切り替えたり、通常の動画でも映像を最大化 clearVideoStyle (114行目付近)
clearVideoStyle
//document.head.removeChild(elements.videoStyle); //元のコード var chatspace = document.getElementById("chat"); chatspace.style.setProperty('height', 'auto', 'important'); chatspace.style.setProperty('min-height', 'auto', 'important');
observeChatFrameのobserve (186行目の下に追加)
observeChatFrame
observe
//下記を追加 var chatspace = document.getElementById("chat"); chatspace.style.removeProperty('height'); chatspace.style.removeProperty('min-height');
コメント欄サイズの調整
(300~302行目)
/* 元のコード height: calc(var(--${SCRIPTID}-video-height) + var(--${SCRIPTID}-info-height)) !important; min-height: auto !important; max-height: calc(100vh - var(--${SCRIPTID}-header-height)) !important; */ height: calc(var(--${SCRIPTID}-video-height)) !important; min-height: 60em !important; max-height: calc((100vh - var(--${SCRIPTID}-header-height)) * 0.5) !important;
登入以回復
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
4Kモニターでliveを見るときに助かっています!ありがとうございます。 勝手に以下の2点をカスタマイズして使っているので、あまりいいコードではないかもしれませんが、同じユーザーの助けになれば・・! (更新されたら使えないかも)
コメントなしに切り替えたり、通常の動画でも映像を最大化
clearVideoStyle
(114行目付近)observeChatFrame
のobserve
(186行目の下に追加)コメント欄サイズの調整
(300~302行目)