Created
June 15, 2025 16:06
-
-
Save mohamedIshak225/935f84a4af77d7df5e10bba392ef7495 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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