YouTube - Disable Fullscreen Scroll

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

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

Post reply

تسجيل الدخول إلى مرحلة ما بعد الرد.