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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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\/*" ] } ] } |