Advertisement
Guest User

4chan improver greasemonkey script

a guest
Apr 4th, 2021
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // ==UserScript==
  2. // @name 4chan improver
  3. // @match https://*.4channel.org/*
  4. // @match https://*.4chan.org/*
  5. // @version 1
  6. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
  7. // @require https://gist.github.com/raw/2625891/waitForKeyElements.js
  8. // @grant GM_addStyle
  9. // @grant GM.getValue
  10. // ==/UserScript==
  11. //- The @grant directives are needed to restore the proper sandbox.
  12. waitForKeyElements (
  13. ".postMessage",
  14. removeNode
  15. );
  16. function removeNode (jNode) {
  17. jNode.remove ();
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement