Gmail Select Sender Email

Allows you to easily copy the email of the sender by clicking on their name in Gmail.

Gmail Select Sender Emailとは何ですか?

Gmail Select Sender EmailはAlex Burckによって開発されたChromeの拡張機能で、その主な機能は「Allows you to easily copy the email of the sender by clicking on their name in Gmail.」です。

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

screenshot

Gmail Select Sender Email拡張機能のCRXファイルをダウンロード

Gmail Select Sender Email拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension simply allows you to click on the name of the sender in an open gmail email in order to copy the email of the sender. When you click on the name of the sender it automatically changes the text to the senders email and highlights it. Then after you press crtl-c or command-c, it will revert back to the original text.

I built this because I found myself constantly hovering over the user's name, highlighting their email, and then copying it. THis is much easier.                    

拡張機能の基本情報

名前 Gmail Select Sender Email Gmail Select Sender Email
ID koddicdefdjldmkdknloeemffdjbdblh
公式URL https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh
説明 Allows you to easily copy the email of the sender by clicking on their name in Gmail.
ファイルサイズ 46.69 KB
インストール数 103
現在のバージョン 1.1
最終更新日 2014-10-26
公開日 2014-10-26
評価 5.00/5 合計 1 レビュー
開発者 Alex Burck
支払い方法 free
拡張機能のウェブサイト https://github.com/burck1/Gmail-Select-Sender-Email
ヘルプページのURL https://github.com/burck1/Gmail-Select-Sender-Email/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Select Sender Email",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Allows you to easily copy the email of the sender by clicking on their name in Gmail.",
    "browser_action": {
        "name": "Copy Email",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ]
}