Universal Visual Governor

Ultra-Lean: Removes costly visual effects globally with zero-runtime overhead and per-site exclusions.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

Advertisement:

Autor
Michael Stutesman
Denně instalací
1
Celkem instalací
3
Hodnocení
0 0 0
Verze
1.2
Vytvořeno
24. 06. 2026
Aktualizováno
25. 06. 2026
velikost
2,7 KB
Licence
MIT
Spustit na
všech stránkách

🧿 Additional Information

Universal Visual Governor is a ultra lean universal userscript designed to reduce visual complexity and rendering overhead on modern websites by removing costly visual effects that provide little functional value while subtly encouraging more efficient GPU-based rendering paths where supported by the browser.

The script runs entirely at document-start, allowing simplification to occur before most page rendering begins. Once the stylesheet is injected, the script performs no additional processing, resulting in effectively zero runtime overhead.


⚡ What It Does

Globally removes the following visual effects:

  • backdrop-filter
  • -webkit-backdrop-filter
  • filter
  • box-shadow
  • text-shadow

Additionally applies lightweight rendering optimization hints:

  • transform: translateZ(0) (encourages GPU compositing where applicable)
  • will-change: transform, opacity (suggests browser layer promotion for smoother rendering)
  • content-visibility: auto (reduces offscreen rendering cost for images)

🚀 Performance Benefits

The removed effects are among the most expensive visual operations commonly found on modern websites.

Removed Effects

Feature Removed Primary Benefit
Backdrop Blur Reduced GPU compositing and blur passes
CSS Filters Reduced GPU image processing
Box Shadows Reduced shadow rasterization costs
Text Shadows Reduced text rendering overhead

Rendering Optimizations Added

Optimization Hint Primary Benefit
translateZ(0) Encourages GPU layer compositing
will-change Pre-allocates smoother animation/rendering layers
content-visibility: auto Reduces layout + paint cost for offscreen images

Runtime Characteristics

Because these changes are applied purely through CSS:

  • Zero runtime loops
  • Zero MutationObservers
  • Zero intervals or timers
  • Zero DOM scanning
  • Zero event listeners
  • Constant memory usage
  • No background tasks

🧠 Design Philosophy

This project follows a strict performance-first design philosophy:

  • CSS-only after initialization
  • No JavaScript processing after injection
  • No observers or reactive systems
  • No network requests
  • No analytics
  • Minimal DOM interaction
  • Broad compatibility with modern websites
  • Preserves native animations, transitions, and userscript-driven effects

The objective is to reduce rendering complexity while preserving functionality and behavioral integrity, while optionally nudging the browser toward more efficient rendering pipelines.


🚫 Site Exclusions

Some websites intentionally rely on visual effects for their design language.

For maximum compatibility, users can exclude individual websites from simplification.

Excluded sites are:

  • Stored locally using GM_getValue
  • Never transmitted externally
  • Managed directly from the userscript menu
  • Instantly applied after page reload

🔐 Privacy

This script is entirely local.

It:

  • Does NOT collect user data
  • Does NOT track browsing activity
  • Does NOT send analytics
  • Does NOT communicate with external servers
  • Does NOT perform network requests
  • Does NOT use cookies

All processing occurs locally within the browser.


⚙️ Compatibility

Designed to work safely across the overwhelming majority of websites.

This version intentionally avoids disabling animations or transitions, preserving:

  • Website animations
  • Video player effects
  • Custom userscripts (e.g., Twitch overlays and motion effects)
  • Interactive UI components
  • Canvas and media-driven effects

Some applications that rely heavily on blur or shadow styling may appear visually simplified, including:

  • Glassmorphism UIs
  • Frosted glass effects
  • Decorative shadows
  • CSS filter effects

If desired, these sites can be excluded via the built-in menu.


📊 Runtime Characteristics

After initialization:

  • CPU usage: Near zero
  • Memory growth: Constant
  • GPU overhead: Reduced through compositing-friendly rendering hints
  • Timers: None
  • Observers: None
  • Network activity: None
  • Background execution: None

The script remains completely idle after injecting its stylesheet.


📜 License

Released under the MIT License.

You are free to:

  • Use commercially or personally
  • Modify the source code
  • Redistribute copies
  • Create derivative works
  • Include it in larger projects

Conditions

  • The software is provided "as is"
  • No warranty is provided
  • The author assumes no liability for damages or issues arising from its use

👤 Author

Michael Stutesman