Copy/paste the code into your javascript console (if you can find that
) and hit enter.. Firefox, just hit Ctrl + Shift + K. If it doesn't pop up at the bottom, idk what to tell ya
while (spoiled = document.evaluate(".//div[contains(@class,'sp-body')]", document, null, 9, null).singleNodeValue) {
For every single instance of the spoiler tag being used, this script will run.
spoiled.setAttribute("class", "sp-newbody");
This bit keeps the code from running infinitely
spoiled.setAttribute("style", "");
The default "style" attribute for a spoiler tag is "display:none" which, obviously, hides the content inside of it. This segment of code clears that tag, unhiding its content.
}
If you get Greasemonkey for Firefox, you could actually have this run automatically on every page....