Skip to content

Instantly share code, notes, and snippets.

@reks-scripts
Created January 5, 2018 21:42
Show Gist options
  • Save reks-scripts/a6b75ebb55fafeff60a45b295b9fa1d5 to your computer and use it in GitHub Desktop.
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
// ==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