Last active
July 10, 2026 09:54
-
-
Save didvc/8143e38f05c269cc6f6ba6d533e9ddc9 to your computer and use it in GitHub Desktop.
Grok Contrast Optimizer — filter-only contrast/brightness/saturation dampener for grok.com (Tampermonkey/Violentmonkey userscript)
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 Pure Filter Contrast Optimizer (Simple) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description Dampens contrast, brightness and saturation on grok.com using CSS filters only, without touching background colors | |
| // @author Gemini | |
| // @match *://grok.com/* | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const style = document.createElement('style'); | |
| style.textContent = 'html { filter: contrast(0.88) brightness(0.94) saturate(0.92) !important; }'; | |
| document.documentElement.appendChild(style); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment