Gmail Color Favicon

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

Τι είναι το Gmail Color Favicon;

Το Gmail Color Favicon είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Manu Cornet, και η κύρια λειτουργία του είναι "Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Gmail Color Favicon

Λήψη αρχείων επέκτασης Gmail Color Favicon σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Gmail Color Favicon Gmail Color Favicon
ID ibkehhmaemkhpniaekaggfcbhfhaiiho
Επίσημο URL https://chrome.google.com/webstore/detail/gmail-color-favicon/ibkehhmaemkhpniaekaggfcbhfhaiiho
Περιγραφή Allows you to change the color of your Gmail favicon to make it easier to distinguish between accounts.
Μέγεθος Αρχείου 652 KB
Αριθμός Εγκαταστάσεων 422
Τρέχουσα Έκδοση 0.15
Τελευταία Ενημέρωση 2016-01-06
Ημερομηνία Δημοσίευσης 2016-01-06
Αξιολόγηση 4.00/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής Manu Cornet
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lmanul/gmailcolorfavicon
Υποστηριζόμενες Γλώσσες 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"
    ]
}