Gmail Select Sender Email
Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Τι είναι το Gmail Select Sender Email;
Το Gmail Select Sender Email είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Burck, και η κύρια λειτουργία του είναι "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail Select Sender Email
Λήψη αρχείων επέκτασης Gmail Select Sender Email σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gmail Select Sender Email |
ID | koddicdefdjldmkdknloeemffdjbdblh |
Επίσημο URL | https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh |
Περιγραφή | Allows you to easily copy the email of the sender by clicking on their name in Gmail. |
Μέγεθος Αρχείου | 46.69 KB |
Αριθμός Εγκαταστάσεων | 103 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2014-10-26 |
Ημερομηνία Δημοσίευσης | 2014-10-26 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Alex Burck |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/burck1/Gmail-Select-Sender-Email |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/burck1/Gmail-Select-Sender-Email/issues |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |