YouTube - Disable Fullscreen Scroll

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

< Părere la script-ul YouTube - Disable Fullscreen Scroll

Întrebare/comentariu

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

Postează un raspuns

Autentifică-te pentru a posta un răspuns.