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
官方網址 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\/*"
            ]
        }
    ]
}