![]() |
How to hide the snow from this page? - Printable Version +- MFGG Forums (https://forums.mfgg.net) +-- Forum: Community (https://forums.mfgg.net/forumdisplay.php?fid=9) +--- Forum: General Chat (https://forums.mfgg.net/forumdisplay.php?fid=3) +--- Thread: How to hide the snow from this page? (/showthread.php?tid=1522) |
How to hide the snow from this page? - George - 12-15-2018 I like this snow, but to other people may be annoying. It is any possibility to hide the snow? RE: How to hide the snow from this page? - George - 12-15-2018 If you using Chrome, one way to hide snow is go to Devtools (Ctrl+Shift+I or F12). Right click (or click on the three horizontal dots) in <body> and select Edit as HTML. Select all from first <span> to 65th flakes </span> and delete it with backspace. Close Devtools and it's done. Do this every time you visit another page in MFGG or refreshing current page. RE: How to hide the snow from this page? - Syaxamaphone - 12-15-2018 Thank you George for putting an end to the snowy menace RE: How to hide the snow from this page? - George - 12-15-2018 On Chrome, next way to hide the snow is while you click on "refresh page" and after the page is appear, immediately click "stop loading this page" and it's done. But this way may not show everything on the page, so if only half a page is displayed, you need to refresh again or choose the first way. RE: How to hide the snow from this page? - Mario - 12-15-2018 I made a greasemonkey script for this. Code: // ==UserScript== 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) { [font=Comic Sans MS]Hope this helps! RE: How to hide the snow from this page? - VinnyVideo - 12-16-2018 Don't worry - Santa Claus won't ding you if you decide to hide the snow. |