Advertisement
neokabuto

Facepunch Fast Threads Hider

Jun 17th, 2012
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. //
  3. //Displayable Name of your script
  4. // @name           Facepunch Fast Threads Remover
  5. //
  6. // brief description
  7. // @description    Removes a forum so everyone has less to complain about.
  8. //
  9. // Your name, userscript userid link (optional)  
  10. // @author         neokabuto
  11. //
  12. //Version Number
  13. // @version        1.0
  14. //
  15. // Urls process this user script on
  16. // @match http://*.facepunch.com/*
  17. // @match http://facepunch.com/*
  18. //
  19. // Add any library dependencies here, so they are loaded before your script is loaded.
  20. //
  21. // @history        1.0 first version
  22. //
  23. // ==/UserScript==
  24.  
  25.  
  26. var element = document.getElementById("forum60");
  27.  
  28.  
  29. element.innerHTML = "";
  30. element.style.display = "none";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement