YouTube - Disable Fullscreen Scroll

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

< YouTube - Disable Fullscreen Scroll 피드백으로 돌아가기

질문/댓글

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);

답글 게시

답글을 게시하려면 로그인하세요.