mfluehr / Clean Up IMDB

// ==UserScript==
// @namespace     https://openuserjs.org/users/mfluehr
// @name          Clean Up IMDB
// @description   Hide sidebars on IMDB.
// @license       MIT
// @version       1.0.1
// @include       https://www.imdb.com/*
// @run-at        document-start
// @grant         none
// ==/UserScript==

// ==OpenUserJS==
// @author mfluehr
// ==/OpenUserJS==

const styles = `
  [class^='TitleMainBelowTheFoldGroup__SidebarContainer'], [class*=' TitleMainBelowTheFoldGroup__SidebarContainer'] {
    display: none;
  }
`;

const styleSheet = document.createElement('style');
styleSheet.type = 'text/css';
styleSheet.innerText = styles;

document.addEventListener("DOMContentLoaded", e => {
  document.head.appendChild(styleSheet);
});