Youtube always sidebar guide

Prevents youtube from hiding the sidebar/guide when opening a video

  1. // ==UserScript==
  2. // @name Youtube always sidebar guide
  3. // @namespace Danielv123
  4. // @description Prevents youtube from hiding the sidebar/guide when opening a video
  5. // @include https://www.youtube.com/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. setInterval(function () {
  10. document.getElementsByTagName('html') [0].setAttribute('class', 'show-guide guide-pinned');
  11. }, 100)