Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Apa itu Gmail Select Sender Email?
Gmail Select Sender Email adalah ekstensi Chrome yang dikembangkan oleh Alex Burck, dan fitur utamanya adalah "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gmail Select Sender Email
Unduh file ekstensi Gmail Select Sender Email dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
URL Resmi | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Deskripsi | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
Ukuran File | 46.69 KB |
Jumlah Instalasi | 103 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2014-10-26 |
Tanggal Publikasi | 2014-10-26 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Alex Burck |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/burck1/Gmail-Select-Sender-Email |
URL Halaman Bantuan | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Bahasa yang Didukung | 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\/*" ] } ] } |