Web Color Filter

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

O que é Web Color Filter?

Web Color Filter é uma extensão do Chrome desenvolvida por Bhupesh Singh, e sua principal característica é "Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Web Color Filter

Baixe arquivos de extensão Web Color Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        # 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                    

Informações Básicas da Extensão

Nome Web Color Filter Web Color Filter
ID njnaggoebacjnbklkcccmbnpfmeagcmp
URL Oficial https://chromewebstore.google.com/detail/web-color-filter/njnaggoebacjnbklkcccmbnpfmeagcmp
Descrição Apply color filters to your web pages. Multiple dark mode themes. Ajust the brightness, contrast, saturation, etc.
Tamanho do Arquivo 368 KB
Contagem de Instalações 7,000
Versão Atual 4
Última Atualização 2023-11-06
Data de Publicação 2022-03-23
Classificação 4.00/5 Total de 10 Avaliações
Desenvolvedor Bhupesh Singh
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://direct.me/bhupesh
Idiomas Suportados 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"
    ]
}