Skip to content

Instantly share code, notes, and snippets.

@LucioFranco
Created April 7, 2023 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucioFranco/74395b0f648574e0447e7b93406c9c2e to your computer and use it in GitHub Desktop.
Save LucioFranco/74395b0f648574e0447e7b93406c9c2e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Remove paramount+ live tv sidebar
// @version 1
// @grant none
// @include https://www.paramountplus.com/live-tv/*
// ==/UserScript==
let sidebar = document.getElementsByClassName("skin-sidebar-plugin");
setTimeout(() => {
let s = sidebar[0];
console.log("sidebar: " + s);
s.style.display = "none";
}, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment