Advertisement
Guest User

Aero's Post Fixer 2

a guest
Aug 28th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.58 KB | None | 0 0
  1. // ==UserScript==
  2. // @name         Aero's Post Fixer 2
  3. // @namespace    https://www.supermariobrosx.org/*
  4. // @version      0.1
  5. // @description  Hides unnecessary profile info that bloats post sizes.
  6. // @author       Aero
  7. // @match        https://www.supermariobrosx.org/*
  8. // @grant        GM_addStyle
  9. // ==/UserScript==
  10.  
  11. GM_addStyle ( `
  12. .signature {
  13. border-top: 1px solid black;
  14. overflow: auto;
  15. max-height: 200px;
  16. width: 100%;
  17. }
  18.  
  19. .profile-rank img {
  20. display: none;
  21. }
  22.  
  23. .postprofile {
  24. display: none;
  25. }
  26.  
  27. .postbody {
  28. width: 100%
  29. }
  30.  
  31. #wrap { max-width: 80%; }
  32. ` );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement