Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Aero's Post Fixer 2
- // @namespace https://www.supermariobrosx.org/*
- // @version 0.1
- // @description Hides unnecessary profile info that bloats post sizes.
- // @author Aero
- // @match https://www.supermariobrosx.org/*
- // @grant GM_addStyle
- // ==/UserScript==
- GM_addStyle ( `
- .signature {
- border-top: 1px solid black;
- overflow: auto;
- max-height: 200px;
- width: 100%;
- }
- .profile-rank img {
- display: none;
- }
- .postprofile {
- display: none;
- }
- .postbody {
- width: 100%
- }
- #wrap { max-width: 80%; }
- ` );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement