I made a greasemonkey script for this.
It'll automatically run on every page. Just make a new script in GreaseMonkey and paste and save the contents of the code tag above there.
If you don't want to install the greasemonkey extension, you can do a bookmarklet too!
Head over to https://mrcoles.com/bookmarklet/ , paste in the following code in the CODE tag, name it what you want, click "convert to bookmarklet", then on the link that's named after what you named it you can right click and add it to your bookmarks toolbar and click it on every mfgg page you load for the snow to be removed.
[font=Comic Sans MS]Hope this helps!
""We choose to go to the [Suggestions board] not because it's easy, but because it's hard; because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one which we intend to win."
- John F. Kennedy"
- gothgirlgangblastermaster
Code:
// ==UserScript==
// @name Remove MFGG Snow
// @version 1
// @grant none
// @include https://forums.mfgg.net/*
// ==/UserScript==
document.querySelectorAll("span[id^=flake]").forEach(function(element) {
element.parentElement.removeChild(element);
});
It'll automatically run on every page. Just make a new script in GreaseMonkey and paste and save the contents of the code tag above there.
If you don't want to install the greasemonkey extension, you can do a bookmarklet too!
Head over to https://mrcoles.com/bookmarklet/ , paste in the following code in the CODE tag, name it what you want, click "convert to bookmarklet", then on the link that's named after what you named it you can right click and add it to your bookmarks toolbar and click it on every mfgg page you load for the snow to be removed.
Code:
document.querySelectorAll("span[id^=flake]").forEach(function(element) {
element.parentElement.removeChild(element);
});
[font=Comic Sans MS]Hope this helps!
Interested in web development? Check out Super Mario Web Development. Wahoo!
""We choose to go to the [Suggestions board] not because it's easy, but because it's hard; because that goal will serve to organize and measure the best of our energies and skills, because that challenge is one that we are willing to accept, one we are unwilling to postpone, and one which we intend to win."
- John F. Kennedy"
- gothgirlgangblastermaster