Contacts for Google Inbox

Makes recipients link to their contact page.

Contacts for Google Inboxคืออะไร?

Contacts for Google Inbox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Adrien Joly และคุณลักษณะหลักของมันคือ "Makes recipients link to their contact page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Contacts for Google Inbox

ดาวน์โหลดไฟล์ส่วนขยาย Contacts for Google Inbox ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Click on a recipient, it brings you to its Google Contact page!

Change log:

== v0.4.4: make recipients also clickable                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Contacts for Google Inbox Contacts for Google Inbox
ID onifklcfhbdjpkejffijcejbgoipcdmk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/contacts-for-google-inbox/onifklcfhbdjpkejffijcejbgoipcdmk
คำอธิบาย Makes recipients link to their contact page.
ขนาดไฟล์ 38.64 KB
จำนวนการติดตั้ง 194
เวอร์ชันปัจจุบัน 0.4.4
อัปเดตครั้งล่าสุด 2017-05-24
วันที่เผยแพร่ 2017-05-24
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Adrien Joly
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/adrienjoly/chrome-contacts-for-google-inbox
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contacts for Google Inbox",
    "description": "Makes recipients link to their contact page.",
    "version": "0.4.4",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "permissions": [
        "identity",
        "https:\/\/inbox.google.com\/"
    ],
    "oauth2": {
        "client_id": "847367303310-3836c14jv14a6b7n78c5uc6o8na8nvfc.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.google.com\/m8\/feeds"
        ]
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAohonuT5+NP+H4o7YXAH7ZhsjVRqJUoJ\/aHrUgjeNoCMGhZm3OqcSUF4ksAHlIk7elpxP5VUSn1xt3AGMna41Ibn5z5mg53HKnAGFeFAxVHjrHkV4SYsHQw03jKawV6xiTN4f5C+XpI\/bsJN70MVl9WTiWwftrwdjukYkl4kx21rluiJPaICR+xIQrv0N9vAoZ4vP9i5wAYx7nGTcaNKtjInyzh4D4m00qzOD0UAElb1B8axGE9XS1pHgzhqVrhnDUzwuFoTPOq6RYLjPLzzkqIHU95HC7Hhp4N3xEsfSW1MEwUo2E\/aZjs9xWTQcMWbaquiEFfEG6d+XYlNnCIoF+wIDAQAB",
    "manifest_version": 2
}