BY POPULAR DEMAND
Tired of tiny posts? Big posts? Red posts? Blue posts? Almost invisible posts? Rainbow posts?Here are a couple of greasemonkey scripts to make browsing the forums less of an eyesore.
Firefox:This script takes every font size tag that is not equal to the default form font size and blanks it. It's pretty simple.
If you don't have greasemonkey already, download it here:
https://addons.mozilla.org/en-US/firefox/addon/748Now download and install the script:
http://userscripts.org/scripts/show/70849Okay, you've got the script. But it only effects phpbb2 forums (like RTB) at the moment. We need to change the filter so that it applies to the Blockland forums.
Right click the monkey icon in the lower left hand side of your browser and click Manage User Scripts. Alternatively go to Tools>Greasemonkey>Manage User Scripts...
You should see Override phpBB Font on the left side of the screen along with any other scripts you have installed. Click on Override phpBB Font. Click on the only link under Included Pages and click Edit... Change the URL to
http://forum.blockland.us/*
Great! Now the script will automatically fix any stray font sizes.
But wait, suppose you want to get rid of colors too? I think I mentioned that in the beginning of the post.
In the Script Manager click on Override phpBB Font. Click the edit button down at the button at the bottom of the screen.
Something that looks like this should appear:
// ==UserScript==
// @name Override phpBB Font
// @namespace *
// @include */viewtopic.php*
// ==/UserScript==
for (var i = 0; i < document.getElementsByTagName("span").length; i++)
if(document.getElementsByTagName("span")[i].style.fontSize != "") document.getElementsByTagName("span")[i].style.fontSize = "";
Change it to this and you're done:
// ==UserScript==
// @name Override phpBB Font
// @namespace *
// @include */viewtopic.php*
// ==/UserScript==
for (var i = 0; i < document.getElementsByTagName("span").length; i++)
if(document.getElementsByTagName("span")[i].style.fontSize != "") document.getElementsByTagName("span")[i].style.fontSize = "";
for (var i = 0; i < document.getElementsByTagName("span").length; i++)
if(document.getElementsByTagName("span")[i].style.color != "") document.getElementsByTagName("span")[i].style.color = "";
Neither color nor strange font sizes will ever bother you again!
Google Chrome:Download this:
http://forum.blockland.us/index.php?action=dlattach;topic=103197.0;attach=80584To install just rename it from code.user.js.txt to code.user.js. Then drag and drop it into the google chrome window and it will automatically install.