Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Cos'è Gmail Select Sender Email?
Gmail Select Sender Email è un'estensione di Chrome sviluppata da Alex Burck, e la sua funzione principale è "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail Select Sender Email
Scarica i file di estensione Gmail Select Sender Email in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
URL Ufficiale | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Descrizione | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
Dimensione del File | 46.69 KB |
Conteggio Installazioni | 103 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2014-10-26 |
Data di Pubblicazione | 2014-10-26 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Alex Burck |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/burck1/Gmail-Select-Sender-Email |
URL della Pagina di Aiuto | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Lingue Supportate | 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\/*" ] } ] } |