Tampermonkey: I hate PLPD Online christmas

Messages
901
Reaction score
2,533
Points
790
Location
Netherlands
Do you like me hate christmas even more than shoutbox colors? Well then look no further and use this Tampermonkey script!

To use this script, install Tampermonkey (Chrome, Firefox) for your browser and add this script to remove all the christmas joy!

Code:
// ==UserScript==
// @name         Christmas b-gone
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Removes Christmas
// @author       Riekelt
// @match        https://plpd.online/*
// @icon         https://www.google.com/s2/favicons?domain=plpd.online
// @grant    GM_addStyle
// @run-at   document-start
// ==/UserScript==

GM_addStyle(`
#snow { animation: none !important; background: none !important; }
.lightrope { display: none !important; }
`);

Brought to you by Riekelt, removing shoutbox colors and christmas joy since 2021.
 
Messages
4,662
Reaction score
11,670
Points
1,105
Location
305
The snow absolutely fucks with your FPS and you can't even keep the page open on a second monitor. Thank YOU.
 
Messages
1,543
Reaction score
1,586
Points
1,080
Location
Belgium
didn't even realise the snow was back, still had my tampermonkey script from last year :D
 
Messages
1,065
Reaction score
1,299
Points
765
Location
The Eras Tour
« The season is almost over »

I still have to stare at it every year and it becomes a nuisance after the 3rd of december each year!
 
Messages
1,543
Reaction score
1,586
Points
1,080
Location
Belgium
Also get rid of the stupid Halloween spider and loud as fuck music and you will be loved forever
Code:
// ==UserScript==
// @name         http://PLPD.online undo christmas-theme
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://plpd.online/*
// @icon         https://www.google.com/s2/favicons?domain=plpd.online
// @grant        none
// ==/UserScript==
(function() {
'use strict';
$("div[id$='snow']").remove();
$("div[class$='lightrope']").remove();
$("audio[id$='christmas_song']").remove();})();
idk what the halloween spider is, but this also removes the song.
 
Top