Gmail Color Favicon

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

¿Qué es Gmail Color Favicon?

Gmail Color Favicon es una extensión de Chrome desarrollada por Manu Cornet, y su función principal es "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Gmail Color Favicon

Descarga archivos de extensión Gmail Color Favicon en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *** 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!                    

Información Básica de la Extensión

Nombre Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
URL Oficial https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Descripción Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Tamaño del Archivo 652 KB
Cantidad de Instalaciones 422
Versión Actual 0.15
Última Actualización 2016-01-06
Fecha de Publicación 2016-01-06
Calificación 4.00/5 Total de 10 Calificaciones
Desarrollador Manu Cornet
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lmanul/gmailcolorfavicon
Idiomas Soportados 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"
    ]
}