So I am a bit of a gamer, so I browse the games section, but I get tired of the oversized images stretching the forum width.
So I got stylebot addon for chrome and added
then I thought "what if I want to see the full size?
So I got jQuery Shell addon for chome and added
I know very little about jQuery but this works and it's good enough for me.
So if you have, what have you modified on these forums with your infinite knowledge? Or perhaps you have some other site you're proud of a modification on?
Let me know in the comments below
So I got stylebot addon for chrome and added
Code:
img {
max-width: 1000px;
}
So I got jQuery Shell addon for chome and added
Code:
$(document).ready(function() {
$('td.alt1 img').each(function() {
var htmlSrc = $(this).attr('src');
$(this).wrap('<a href="' + htmlSrc + '">');
});
});
I know very little about jQuery but this works and it's good enough for me.
So if you have, what have you modified on these forums with your infinite knowledge? Or perhaps you have some other site you're proud of a modification on?
Let me know in the comments below

Last edited: