Created
November 28, 2025 06:43
-
-
Save nmnmrm/a164b3e317d09bb00237d025e64274b4 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 ACMP Dark | |
| // @namespace http://tampermonkey.net/ | |
| // @Version 2025-11-27 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://acmp.ru/* | |
| // @ICON https://www.google.com/s2/favicons?sz=64&domain=acmp.ru | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| document.getElementsByTagName("BODY")[0].style = 'background-color: #1F2222;' | |
| window.onload = function() { | |
| for (const el of document.getElementsByTagName("TR")) { | |
| if (el.parentNode.tagName == "TBODY") { | |
| el.parentNode.childNodes[4].style = 'filter: brightness(0.9) saturate(40%) hue-rotate(180deg) invert(1);' | |
| el.parentNode.childNodes[0].style = 'filter: brightness(0.9) saturate(40%) hue-rotate(180deg) invert(1);' | |
| break; | |
| } | |
| } | |
| document.body.childNodes[3].childNodes[1].style = 'color: white;' | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment