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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Burck และคุณลักษณะหลักของมันคือ "Allows you to easily copy the email of the sender by clicking on their name in Gmail."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Select Sender Email

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
            ]
        }
    ]
}