Created
January 5, 2018 21:42
-
-
Save reks-scripts/a6b75ebb55fafeff60a45b295b9fa1d5 to your computer and use it in GitHub Desktop.
Tamper Monkey script that prevents "X Blocked Messages" from showing in Discord
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 Really Block Blocked Discord Users | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Prevents "X Blocked Messages" from showing in Discord | |
// @author rek | |
// @match https://discordapp.com/* | |
// @grant none | |
// @require https://code.jquery.com/jquery-3.2.1.min.js | |
// ==/UserScript== | |
(function() { | |
var i = setInterval(function(){ | |
$('.message-group-blocked').css('display', 'none'); | |
if ($('.message-group-blocked').css == 'none'){ | |
clearInterval(i); | |
} | |
}, 10); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment