Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!
I campaigned (unsuccessfully) to have avatars that were too flashy in terms of gifs used in moderation, they are highly annoying.PS....likewise to a certain 'flashing' avatar too....my apologies to the owner but it too was just too annoying.
// ==UserScript==
// [USER=27726]Name[/USER] Snowplough
// [USER=27726]Name[/USER]space mrtom.psg.snowplough
// @include [url]https://www.photoshopgurus.com/*[/url]
// [USER=111695]mat[/USER]ch [url]https://www.photoshopgurus.com/*[/url]
// @run-at document-start
// ==/UserScript==
document.addEventListener ("readystatechange", FireWhenReady, true);
function FireWhenReady () {
this.fired = this.fired || false;
if ( document.readyState != "uninitialized" && document.readyState != "loading" && ! this.fired) {
this.fired = true;
document.body.onload = function () {
console.log ("body onload intercepted.");
};
}
}