YouTube - Disable Fullscreen Scroll

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

< Σχολιασμός για τον κώδικα YouTube - Disable Fullscreen Scroll

Ερώτηση/σχόλιο

§
Δημοσιεύτηκε: 24/05/2025

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

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.