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

返信を投稿

返信を投稿するにはログインしてください