Advertisement
xdemonessx

Discord hide blocked messages

Jun 17th, 2023
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Discord Hide Blocked Messages
  3. // @namespace https://github.com/Multarix/Discord-Hide-Blocked-Messages
  4. // @match https://discord.com/*
  5. // @downloadURL https://raw.githubusercontent.com/Multarix/Discord-Hide-Blocked-Messages/master/script.user.js
  6. // @homepageURL https://github.com/Multarix/Discord-Hide-Blocked-Messages
  7. // @supportURL https://github.com/Multarix/Discord-Hide-Blocked-Messages/issues
  8. // @grant none
  9. // @version 2.0
  10. // @author Anonymous
  11. // @description 10/28/2020, 1:37:40 PM
  12. // ==/UserScript==
  13.  
  14. const sheet = window.document.styleSheets[0];
  15. sheet.insertRule(`ol > [class^='groupStart-'] { display: none; }`, sheet.cssRules.length);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement