Created
July 18, 2021 03:05
-
-
Save yurighensev/aa2dff19bcd67bfee17418d0c34ed3f3 to your computer and use it in GitHub Desktop.
edhrec no video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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