Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Co to jest Gmail Select Sender Email?
Gmail Select Sender Email to rozszerzenie Chrome opracowane przez Alex Burck, a jego główną funkcją jest „Allows you to easily copy the email of the sender by clicking on their name in Gmail.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gmail Select Sender Email
Pobierz pliki rozszerzeń Gmail Select Sender Email w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
Oficjalny URL | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Opis | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
Rozmiar pliku | 46.69 KB |
Liczba instalacji | 103 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2014-10-26 |
Data Publikacji | 2014-10-26 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Alex Burck |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/burck1/Gmail-Select-Sender-Email |
Adres URL Strony Pomocy | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Obsługiwane Języki | 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\/*" ] } ] } |