Salesforce Colored Favicons

Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.

O que é Salesforce Colored Favicons?

Salesforce Colored Favicons é uma extensão do Chrome desenvolvida por Steve Babula, e sua principal característica é "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Salesforce Colored Favicons

Baixe arquivos de extensão Salesforce Colored Favicons 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

                        Supports both Classic and Lightning Experiences and includes separate icons for production, sandbox, and develop/scratch orgs.

To use the extension, simply navigate to a Salesforce org and the extension will automatically select a random color for it then update the favicon with that color. Now every time you visit that org, the colored favicon will be displayed instead of the default Salesforce favicon. At this point you can also visit the options page to change the color for any org you've visited.                    

Informações Básicas da Extensão

Nome Salesforce Colored Favicons Salesforce Colored Favicons
ID peohlnebahcddpmfaplmilpkgbkkcdho
URL Oficial https://chromewebstore.google.com/detail/salesforce-colored-favico/peohlnebahcddpmfaplmilpkgbkkcdho
Descrição Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.
Tamanho do Arquivo 12.52 KB
Contagem de Instalações 52,029
Versão Atual 2.0.14
Última Atualização 2023-05-26
Data de Publicação 2020-06-11
Classificação 4.56/5 Total de 86 Avaliações
Desenvolvedor Steve Babula
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Colored Favicons",
    "description": "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.",
    "version": "2.0.14",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.visualforce.com\/*",
                "https:\/\/*.salesforce.mil\/*",
                "https:\/\/*.crmforce.mil\/*",
                "https:\/\/*.sandbox.my.salesforce-sites.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "favicon.ico",
                "favicon-s.ico",
                "favicon-dx.ico"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.visualforce.com\/*",
                "https:\/\/*.salesforce.mil\/*",
                "https:\/\/*.crmforce.mil\/*",
                "https:\/\/*.sandbox.my.salesforce-sites.com\/*"
            ]
        }
    ]
}