Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
¿Qué es Gmail Select Sender Email?
Gmail Select Sender Email es una extensión de Chrome desarrollada por Alex Burck, y su función principal es "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gmail Select Sender Email
Descarga archivos de extensión Gmail Select Sender Email en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
URL Oficial | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Descripción | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
Tamaño del Archivo | 46.69 KB |
Cantidad de Instalaciones | 103 |
Versión Actual | 1.1 |
Última Actualización | 2014-10-26 |
Fecha de Publicación | 2014-10-26 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Alex Burck |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/burck1/Gmail-Select-Sender-Email |
URL de la Página de Ayuda | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Idiomas Soportados | 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\/*" ] } ] } |