Gmail Color Favicon

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

Was ist Gmail Color Favicon?

Gmail Color Favicon ist eine Chrome-Erweiterung, die von Manu Cornet entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Erweiterungsscreenshots

screenshot

Gmail Color Favicon-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail Color Favicon-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
Offizielle URL https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Beschreibung Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Dateigröße 652 KB
Installationsanzahl 422
Aktuelle Version 0.15
Letztes Update 2016-01-06
Veröffentlichungsdatum 2016-01-06
Bewertung 4.00/5 Insgesamt 10 Bewertungen
Entwickler Manu Cornet
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lmanul/gmailcolorfavicon
Unterstützte Sprachen 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"
    ]
}