Gmail Color Favicon

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

Hvad er Gmail Color Favicon?

Gmail Color Favicon er en Chrome-udvidelse udviklet af Manu Cornet, og dens hovedfunktion er "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Udvidelsesskærmbilleder

screenshot

Download Gmail Color Favicon-udvidelses-CRX-fil

Download Gmail Color Favicon-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
Officiel URL https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Beskrivelse Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Filstørrelse 652 KB
Antal Installationer 422
Nuværende Version 0.15
Senest Opdateret 2016-01-06
Udgivelsesdato 2016-01-06
Bedømmelse 4.00/5 Samlet 10 Bedømmelser
Udvikler Manu Cornet
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/lmanul/gmailcolorfavicon
Understøttede Sprog 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"
    ]
}