Skip to content

Instantly share code, notes, and snippets.

@didvc
Last active July 10, 2026 09:54
Show Gist options
  • Select an option

  • Save didvc/8143e38f05c269cc6f6ba6d533e9ddc9 to your computer and use it in GitHub Desktop.

Select an option

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)
// ==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