Gmail Color Favicon

Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.

O que é Gmail Color Favicon?

Gmail Color Favicon é uma extensão do Chrome desenvolvida por Manu Cornet, e sua principal característica é "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail Color Favicon

Baixe arquivos de extensão Gmail Color 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

                        *** Please reload your Gmail tabs after installing this extension. ***

*** Known issue: the color you've chosen doesn't stick when you reload your Gmail. That's next on the roadmap. ***

Feedback and contributions welcome!                    

Informações Básicas da Extensão

Nome Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
URL Oficial https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Descrição Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Tamanho do Arquivo 652 KB
Contagem de Instalações 422
Versão Atual 0.15
Última Atualização 2016-01-06
Data de Publicação 2016-01-06
Classificação 4.00/5 Total de 10 Avaliações
Desenvolvedor Manu Cornet
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lmanul/gmailcolorfavicon
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Color Favicon",
    "version": "0.15",
    "description": "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.",
    "browser_action": {
        "default_title": "Pick a color",
        "default_icon": "icon_19.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "19": "icon_19.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "72": "icon_72.png",
        "128": "icon_128.png",
        "250": "icon_250.png"
    },
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "tabs"
    ]
}