Skip to content

Instantly share code, notes, and snippets.

@mohamedIshak225
Created June 15, 2025 16:06
Show Gist options
  • Save mohamedIshak225/935f84a4af77d7df5e10bba392ef7495 to your computer and use it in GitHub Desktop.
Save mohamedIshak225/935f84a4af77d7df5e10bba392ef7495 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Wormax.io Funny Clown Skin 🤡
// @match *://wormax.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const css = `
canvas {
filter: hue-rotate(0deg) saturate(3) brightness(1.5) contrast(1.2) !important;
animation: clownEffect 2s infinite linear;
}
@keyframes clownEffect {
0% { filter: hue-rotate(0deg); }
25% { filter: hue-rotate(90deg); }
50% { filter: hue-rotate(180deg); }
75% { filter: hue-rotate(270deg); }
100% { filter: hue-rotate(360deg); }
}
`;
const style = document.createElement('style');
style.innerHTML = css;
document.head.appendChild(style);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment