Random pro-tip
Given how most of the pages of this thread is now covered with black bars, this tip might prove useful to some, especially those of us who are following the latest chapters.
If you want to get rid of all the black highlighting for the spoilers (the black bars), you can use the following bit of JavaScript.
In Chrome, Firefox or IE, press F12 (Command Option I on OS X) to open the Developer Tools, then go to the Console tab, then paste the following line of code and hit Enter.
$('.spoilers').removeClass('spoilers').css('background','lightgray');
What it does:
- finds all the elements on the page that has the "spoilers" CSS class
- removes the "spoilers" CSS class, hence removing the black highlighting
- adds light gray highlighting so that you can know what was marked as spoilers
If you don't even want the light gray highlighting, use this:
$('.spoilers').removeClass('spoilers');
By the way, you don't have to keep copying this text. You only need to manually paste it into the Console once; afterwards, you can press the Up Arrow key in the Console to bring up previously entered commands.
Hope this proves useful.
(Come to think of it, it'd be nice if this forum had such a button. "Show all spoilers" or something.)
last edited at Mar 21, 2015 8:56PM