Gmail Color Favicon

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

Cos'è Gmail Color Favicon?

Gmail Color Favicon è un'estensione di Chrome sviluppata da Manu Cornet, e la sua funzione principale è "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gmail Color Favicon

Scarica i file di estensione Gmail Color Favicon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
URL Ufficiale https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Descrizione Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Dimensione del File 652 KB
Conteggio Installazioni 422
Versione Corrente 0.15
Ultimo Aggiornamento 2016-01-06
Data di Pubblicazione 2016-01-06
Valutazione 4.00/5 Totale 10 Valutazioni
Sviluppatore Manu Cornet
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lmanul/gmailcolorfavicon
Lingue Supportate 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"
    ]
}