Gmail Contacts Card Updater
See useful contact information right in your Gmail!
Gmail Contacts Card Updater क्या है?
Gmail Contacts Card Updater gmachine द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See useful contact information right in your Gmail!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Contacts Card Updater एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } } |