Greasy Fork镜像 还支持 简体中文。

Brightness, contrast & saturation booster

Boosts brightness, contrast & saturation on every website

// ==UserScript==
// @name         Brightness, contrast & saturation booster
// @description  Boosts brightness, contrast & saturation on every website
// @version      1.0
// @author       L.M.M.
// @match        *://*/*
// @run-at       document-start
// @namespace https://gf.qytechs.cn/users/1437292
// ==/UserScript==

(function() {
    'use strict';

    const brightness = 1.03;
    const contrast = 1.05;
    const saturation = 1.07;

    if (!document.getElementById('filterStyle')) {
        const style = document.createElement('style');
        style.id = 'filterStyle';
        style.textContent = `
            body {
                filter: brightness(${brightness}) contrast(${contrast}) saturate(${saturation}) !important;
            }
        `;
        document.head.appendChild(style); 
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址