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是由Alex Burck开发的Chrome扩展程序,该扩展的主要功能是“Allows you to easily copy the email of the sender by clicking on their name in Gmail.”。
扩展截图
下载Gmail Select Sender Email扩展crx文件
下载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\/*" ] } ] } |