YouTube - Disable Fullscreen Scroll

Disable scroll for details feature and remove the label from the bottom in fullscreen

< 腳本YouTube - Disable Fullscreen Scroll的回應

提問/評論

§
發表於:2025-05-24

Coding Suggestion

You shall use document.adoptedStyleSheets to avoid the TTP issue for the style adding.

Change from

var css = document.createElement("style");
css.innerText=".ytp-fullerscreen-edu-button { display: none !important; }";
document.head.appendChild(css);

to

let css = new CSSStyleSheet();
css.insertRule(".ytp-fullerscreen-edu-button { display: none !important; }");
document.adoptedStyleSheets.push(css);

發表回覆

登入以回覆

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址