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 là gì?

Gmail Select Sender Email là một tiện ích mở rộng Chrome được phát triển bởi Alex Burck, và tính năng chính của nó là "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail Select Sender Email

Tải xuống các tệp mở rộng Gmail Select Sender Email dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail Select Sender Email Gmail Select Sender Email
ID koddicdefdjldmkdknloeemffdjbdblh
URL Chính Thức https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh
Mô tả Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Kích Thước Tệp 46.69 KB
Số Lần Cài Đặt 103
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-10-26
Ngày Phát Hành 2014-10-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Alex Burck
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/burck1/Gmail-Select-Sender-Email
URL Trang Trợ Giúp https://github.com/burck1/Gmail-Select-Sender-Email/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}