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