Web Color Filter

Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.

Cos'è Web Color Filter?

Web Color Filter è un'estensione di Chrome sviluppata da Bhupesh Singh, e la sua funzione principale è "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Web Color Filter

Scarica i file di estensione Web Color Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        # Note : After installing the extension, reload any open tabs or restart the chrome browser for the extension to work.

∘More than 30 filters to apply.

∘Turn any website to dark mode by adjusting the invert option or choose a filter which suits you.

∘Photoshop like effects for your websites.

∘Filter options like Turbulence and X-rays change the look of the web page and make them look unique

∘Use Hue Rotate to change the website color.

∘Easily reset the filters if not satisfied                    

Informazioni di Base sull'Estensione

Nome Web Color Filter Web Color Filter
ID njnaggoebacjnbklkcccmbnpfmeagcmp
URL Ufficiale https://chromewebstore.google.com/detail/web-color-filter/njnaggoebacjnbklkcccmbnpfmeagcmp
Descrizione Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.
Dimensione del File 368 KB
Conteggio Installazioni 7,000
Versione Corrente 4
Ultimo Aggiornamento 2023-11-06
Data di Pubblicazione 2022-03-23
Valutazione 4.00/5 Totale 10 Valutazioni
Sviluppatore Bhupesh Singh
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://direct.me/bhupesh
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Color Filter",
    "version": "4",
    "manifest_version": 3,
    "description": "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo\/logo-16.png",
            "32": "\/images\/logo\/logo-32.png",
            "48": "\/images\/logo\/logo-48.png",
            "128": "\/images\/logo\/logo-128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo\/logo-16.png",
        "32": "\/images\/logo\/logo-32.png",
        "48": "\/images\/logo\/logo-48.png",
        "128": "\/images\/logo\/logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "myScript.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "about.html",
    "web_accessible_resources": [
        {
            "resources": [
                "filters.xml"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}