Dec 06, 2007 21:47
Removing review scores from prominent review sites:
No GreaseMonkey needed, just add the following to your userContent.css file (in App Data/Mozilla/Firefox/Profiles/whatever/chrome)
@-moz-document domain(gamespot.com) {
div.main_score, dl.main_score, div#score_summary, div#side_col_wrap, div#subnav_wrap { display: none !important; }
}
@-moz-document domain(eurogamer.net) {
p.rating {display: none;}
}
@-moz-document domain(ign.com) {
td.ltRating, div#scoresBoxWrapper, div#ratingsBox, div#ratingsBoxLinks {display:none;}
}
I just quick spit that out so it's not all great (the review page on IGN collapses badly). I have to do 1up too (it has such bad HTML...) and others, of course. Also, IMO, because this is all styles it's quicker than greasemonkey.