The sidebar is quite distracting when trying to focus on a single video.
目前為
// ==UserScript==
// @name Remove "watch-next" sidebar
// @namespace Violentmonkey Scripts
// @match https://www.youtube.com/watch*
// @grant none
// @version 1.1
// @license MIT
// @author popular-software
// @description The sidebar is quite distracting when trying to focus on a single video.
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@2
// ==/UserScript==
const disconnect = VM.observe(document.body, () => {
const watch_next_sidebar = document.querySelector("ytd-watch-next-secondary-results-renderer");
if (watch_next_sidebar) {
watch_next_sidebar.remove();
}
});