Env Specific Favicon

Browser extension to customize favicons based on URL and title regex matching

O que é Env Specific Favicon?

Env Specific Favicon é uma extensão do Chrome desenvolvida por Elliot Lintz, e sua principal característica é "Browser extension to customize favicons based on URL and title regex matching".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Env Specific Favicon

Baixe arquivos de extensão Env Specific Favicon 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

                        Target any webpages with its URL or title and change its favicon. This enables you to differentiate favicons shared across multiple websites or environments.

If your rule isn't working, make sure your pattern is correct with online tools like regex101.com.                    

Informações Básicas da Extensão

Nome Env Specific Favicon Env Specific Favicon
ID licfgcgpjgbbankegljcpbklabdnmopl
URL Oficial https://chromewebstore.google.com/detail/env-specific-favicon/licfgcgpjgbbankegljcpbklabdnmopl
Descrição Browser extension to customize favicons based on URL and title regex matching
Tamanho do Arquivo 240 KB
Contagem de Instalações 129
Versão Atual 1.3.1
Última Atualização 2024-02-06
Data de Publicação 2022-04-10
Classificação 4.33/5 Total de 6 Avaliações
Desenvolvedor Elliot Lintz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Elliot67/env-specific-favicon
URL da Página de Ajuda https://github.com/Elliot67/env-specific-favicon/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Env Specific Favicon",
    "author": "Elliot Lintz",
    "version": "1.3.1",
    "description": "Browser extension to customize favicons based on URL and title regex matching",
    "homepage_url": "https:\/\/github.com\/Elliot67\/env-specific-favicon",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-128.png",
        "32": ".\/assets\/icon-128.png",
        "128": ".\/assets\/icon-128.png",
        "512": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' http:\/\/localhost:3303; object-src 'self'"
    }
}