Web Color Filter

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

Hvad er Web Color Filter?

Web Color Filter er en Chrome-udvidelse udviklet af Bhupesh Singh, og dens hovedfunktion er "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Web Color Filter-udvidelses-CRX-fil

Download Web Color Filter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        # 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                    

Grundlæggende oplysninger om udvidelsen

Navn Web Color Filter Web Color Filter
ID njnaggoebacjnbklkcccmbnpfmeagcmp
Officiel URL https://chromewebstore.google.com/detail/web-color-filter/njnaggoebacjnbklkcccmbnpfmeagcmp
Beskrivelse Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.
Filstørrelse 368 KB
Antal Installationer 7,000
Nuværende Version 4
Senest Opdateret 2023-11-06
Udgivelsesdato 2022-03-23
Bedømmelse 4.00/5 Samlet 10 Bedømmelser
Udvikler Bhupesh Singh
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://direct.me/bhupesh
Understøttede Sprog 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"
    ]
}