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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
            ]
        }
    ]
}