Remove "watch-next" sidebar

Tries to remove the distracting "recommended videos" sidebar 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.0
// @license     MIT
// @author      popular-software
// @description Tries to remove the distracting "recommended videos" sidebar 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("#secondary:has(ytd-watch-next-secondary-results-renderer)");
  if (watch_next_sidebar) {
    watch_next_sidebar.remove();
  }
});