Disable scroll for details feature and remove the label from the bottom in fullscreen
< Feedback on YouTube - Disable Fullscreen Scroll
You shall use document.adoptedStyleSheets to avoid the TTP issue for the style adding.
document.adoptedStyleSheets
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);
تسجيل الدخول إلى مرحلة ما بعد الرد.
Coding Suggestion
You shall use
document.adoptedStyleSheets
to avoid the TTP issue for the style adding.Change from
to