Skip to content

Instantly share code, notes, and snippets.

@yurighensev
Created July 18, 2021 03:05
Show Gist options
  • Save yurighensev/aa2dff19bcd67bfee17418d0c34ed3f3 to your computer and use it in GitHub Desktop.
Save yurighensev/aa2dff19bcd67bfee17418d0c34ed3f3 to your computer and use it in GitHub Desktop.
edhrec no video
// ==UserScript==
// @name EDHRec no video
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://edhrec.com/*
// @icon https://www.google.com/s2/favicons?domain=edhrec.com
// @grant GM_log
// @require https://code.jquery.com/jquery-3.5.1.min.js
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function() {
$('div.Leaderboard_leaderboard__2aqRJ').remove();
})
// Your code here...
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment