Gmail Color Favicon

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

Vad är Gmail Color Favicon?

Gmail Color Favicon är en Chrome-tillägg utvecklad av Manu Cornet, och dess huvudfunktion är "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Tilläggsskärmbilder

screenshot

Ladda ner Gmail Color Favicon-förlängningens CRX-fil

Ladda ner Gmail Color Favicon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        *** 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äggande Information om Tillägg

Namn Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
Officiell webbadress https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Beskrivning Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Filstorlek 652 KB
Antal Installationer 422
Aktuell Version 0.15
Senast Uppdaterad 2016-01-06
Publiceringsdatum 2016-01-06
Betyg 4.00/5 Totalt 10 Betyg
Utvecklare Manu Cornet
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lmanul/gmailcolorfavicon
Stödda Språk 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"
    ]
}