Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
What is Gmail Select Sender Email?
Gmail Select Sender Email is a Chrome extension developed by Alex Burck, and its main feature is "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".
Extension Screenshots
Download Gmail Select Sender Email Extension CRX File
Download Gmail Select Sender Email extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
Official URL | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Description | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
File Size | 46.69 KB |
Installation Count | 103 |
Current Version | 1.1 |
Last Updated | 2014-10-26 |
Publish Date | 2014-10-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Alex Burck |
Payment Type | free |
Extension Website | https://github.com/burck1/Gmail-Select-Sender-Email |
Help Page URL | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Supported Languages | 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\/*" ] } ] } |