Contacts for Google Inbox

Makes recipients link to their contact page.

Contacts for Google Inboxとは何ですか?

Contacts for Google InboxはAdrien Jolyによって開発されたChromeの拡張機能で、その主な機能は「Makes recipients link to their contact page.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Contacts for Google Inbox拡張機能のCRXファイルをダウンロード

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
Eメール [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
}