Custom Gmail™ Favicons

Customize your Gmail™ favicon

Τι είναι το Custom Gmail™ Favicons;

Το Custom Gmail™ Favicons είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον evan.carothers, και η κύρια λειτουργία του είναι "Customize your Gmail™ favicon".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Custom Gmail™ Favicons

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

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

                        Do you use more than 1 Gmail™ account on a daily basis? Sick of losing your inbox tabs all over the place? With this extension you can set a custom favicon icon for each of your Gmail™ email accounts, complete with unread message notification. Simply specify the email accounts in the extension options and upload the image you wish to use for the favicon and you're off to the races!

**PLEASE NOTE** - you must not have the Gmail™ Labs "Unread Message Icon" feature enabled or this extension won't work with that account. This extension replaces that feature however, so you are still good to go if you've become accustomed to the favicon badges.                    

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

Όνομα Custom Gmail™ Favicons Custom Gmail™ Favicons
ID naelggiioddkpaokkopkbgfcjlkldpdn
Επίσημο URL https://chromewebstore.google.com/detail/custom-gmail-favicons/naelggiioddkpaokkopkbgfcjlkldpdn
Περιγραφή Customize your Gmail™ favicon
Μέγεθος Αρχείου 121 KB
Αριθμός Εγκαταστάσεων 382
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2015-11-25
Ημερομηνία Δημοσίευσης 2015-11-24
Αξιολόγηση 4.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής evan.carothers
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Gmail\u2122 Favicons",
    "version": "1.0.1",
    "manifest_version": 2,
    "author": "Evan Carothers",
    "description": "Customize your Gmail\u2122 favicon",
    "homepage_url": "https:\/\/github.com\/ecaroth\/gmail-favicon-customizer-chrome-extension",
    "icons": {
        "16": "src\/images\/icon-16.png",
        "128": "src\/images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "src\/shared\/message-relay\/message_relay.js",
                "src\/shared\/favico\/favico.js",
                "src\/content\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/src\/*"
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "https:\/\/mail.google.com\/mail\/"
    ],
    "options_ui": {
        "page": "src\/options\/options.html",
        "chrome_style": true
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}