Just an FYI - there are a couple of issues with Chrome this morning. First of all, the button to post a new thread is missing. Secondly, the ad banners on the right margin are scrunching up the message board content.
Just an FYI - there are a couple of issues with Chrome this morning. First of all, the button to post a new thread is missing. Secondly, the ad banners on the right margin are scrunching up the message board content.
Comments
// ==UserScript== // @name GilbyForAll // @namespace http://hardcorehusky.com // @include http://forum.hardcorehusky.com/* // @require https://ajax.googleapis.com/ajax/libs/prototype/1.7.2.0/prototype.js // ==/UserScript== var gsrc = "http://i.imgur.com/Fn9OGQa.jpg"; var imgs = $$('img.ProfilePhotoSmall'); if (imgs.length > 0) { for (x = 0; x < imgs.length; x++) { imgs[x].src = gsrc; } } var imgs = $$('img.ProfilePhotoMedium'); if (imgs.length > 0) { for (x = 0; x < imgs.length; x++) { imgs[x].src = gsrc; } }