Gmail Contacts Card Updater

See useful contact information right in your Gmail!

Τι είναι το Gmail Contacts Card Updater;

Το Gmail Contacts Card Updater είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gmachine, και η κύρια λειτουργία του είναι "See useful contact information right in your Gmail!".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Gmail Contacts Card Updater

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

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

                        This extension updates the little card you see in Gmail when you mouse over someone's name to include extra information from you Google Contacts account.  It adds in email addresses, phone numbers, and addresses.  It's really simple and really useful (especially for Google Voice users).

Works pretty well but there are a few bugs left to fix:
 * occasionally doesn't load the extra contact info
 * doesn't look good when the contact has an employer

If there are any more bugs or suggestions, please let me know!                    

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

Όνομα Gmail Contacts Card Updater Gmail Contacts Card Updater
ID oiehlacniklopgoomeehknondlaifnll
Επίσημο URL https://chromewebstore.google.com/detail/gmail-contacts-card-updat/oiehlacniklopgoomeehknondlaifnll
Περιγραφή See useful contact information right in your Gmail!
Μέγεθος Αρχείου 17.91 KB
Αριθμός Εγκαταστάσεων 1,618
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2015-05-29
Ημερομηνία Δημοσίευσης 2015-05-28
Αξιολόγηση 3.56/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής gmachine
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Contacts Card Updater",
    "description": "See useful contact information right in your Gmail!",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0eY8B0u36cQq9pDaaXQYgpAuINPdsw5jGtYG\/V5n+Ek2WMSejqWxO2X834pIPY+TU3dBaoP5vSjpQi3E\/Mg37cOC9sT0Aqpvd5XZr4GoyTWujT9u34YDeO+fByYQtUXyLU8l84mLjhtL21wxapcLKmy6lVijCU6b72785R6UOux\/lJPiNM+bqf2h6\/9lNQAIGpvuofWXbyqb3KMmA7TLx9TWM9r7EZL\/ikpceFfYBebxi8l+rI4uu1B\/tFVH6004tRc8l2Ot6wlmcMZY4eZsTq36jyeIw88d5bwaES7\/1v\/MN\/oorA0YSmghnIT5x6P2Wet+F7dyez4aPqwXROV8NwIDAQAB",
    "version": "1.0.4",
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "gcontacts.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/apis.google.com\/*"
            ],
            "js": [
                "iframe.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gmail.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "identity",
        "https:\/\/www.google.com\/m8\/feeds*"
    ],
    "oauth2": {
        "client_id": "268427250380-qhc3f8bq3vocp70hkcqlrkp06h4n6rga.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.google.com\/m8\/feeds"
        ]
    }
}