Title: Unspoil 4chan Author: Anonymous Pastebin link: http://pastebin.com/NsbfyfJY First Edit: Wednesday 14th of May 2014 03:01:51 AM CDT Last Edit: Wednesday 14th of May 2014 03:01:51 AM CDT // ==UserScript== // @name        Auto Unspoil // @author         subby // @include        http://arch.413chan.net/* // @include        *boards.4chan.org/*/thread/* // @include        *archive.heinessen.com/*/thread/* // @version     1 // @grant       none // @description    unspoil posts. // @run-at         document-end // ==/UserScript== var s = document.createElement("style"); s.innerHTML = "s, s a:not(:hover) {background: none repeat scroll 0% 0% #000000 ! important;color: #ffffff ! important;text-decoration: none;} .spoiler {background: none repeat scroll 0% 0% #000000 ! important;color: #ffffff ! important;text-decoration: none;}"; s.setAttribute("id","despoilsheet"); document.getElementsByTagName("head")[0].appendChild(s);