remove discord images 2
// ==UserScript==
// @name remove discord images
// @namespace english
// @description remove discord images 2
// @include http*://*discord.com*
// @version 1.0
// @run-at document-end
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
// Main - Collapse the Greasy Fork Header
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' img { display: none !important;} ';
document.getElementsByTagName('head')[0].appendChild(style);