Gmail Select Sender Email

Allows you to easily copy the email of the sender by clicking on their name in Gmail.

O que é Gmail Select Sender Email?

Gmail Select Sender Email é uma extensão do Chrome desenvolvida por Alex Burck, e sua principal característica é "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail Select Sender Email

Baixe arquivos de extensão Gmail Select Sender Email no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Gmail Select Sender Email Gmail Select Sender Email
ID koddicdefdjldmkdknloeemffdjbdblh
URL Oficial https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh
Descrição Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Tamanho do Arquivo 46.69 KB
Contagem de Instalações 103
Versão Atual 1.1
Última Atualização 2014-10-26
Data de Publicação 2014-10-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Alex Burck
Tipo de Pagamento free
Site da Extensão https://github.com/burck1/Gmail-Select-Sender-Email
URL da Página de Ajuda https://github.com/burck1/Gmail-Select-Sender-Email/issues
Idiomas Suportados 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\/*"
            ]
        }
    ]
}