Skip to content

Instantly share code, notes, and snippets.

@jackysee
Created April 27, 2020 05:26
Show Gist options
  • Save jackysee/14c0672bae7c4ff39c17a3b75423b87f to your computer and use it in GitHub Desktop.
Save jackysee/14c0672bae7c4ff39c17a3b75423b87f to your computer and use it in GitHub Desktop.
Youtube class no end cards
// ==UserScript==
// @name No End Cards - youtube.com
// @namespace Violentmonkey Scripts
// @match https://www.youtube.com/watch
// @grant none
// @version 1.0
// @author -
// @description 4/27/2020, 1:24:03 PM
// ==/UserScript==
var sheet = document.createElement('style')
sheet.innerHTML = ".videowall-endscreen {display: none;}";
document.body.appendChild(sheet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment