eMailTo:Clipboard
This extension overides the html mailto: default and copys the email to your clipboard instead.
什么是eMailTo:Clipboard?
eMailTo:Clipboard是由aturkewi开发的Chrome扩展程序,该扩展的主要功能是“This extension overides the html mailto: default and copys the email to your clipboard instead.”。
下载eMailTo:Clipboard扩展crx文件
下载eMailTo:Clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When installed, this app will overide the mailto in an html link and just copy the email address to your clipboard rather than opening up your default mail client.
扩展基本信息
名称 | eMailTo:Clipboard |
ID | dpckhpnekcojocijmcdpondmicbkbgpo |
官方URL | https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo |
简介 | This extension overides the html mailto: default and copys the email to your clipboard instead. |
文件大小 | 23.48 KB |
安装次数 | 193 |
当前版本 | 1.5 |
更新时间 | 2017-03-07 |
上架时间 | 2017-03-07 |
评分 | 5.00/5 共4次评分 |
开发者 | aturkewi |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "eMailTo:Clipboard", "description": "This extension overides the html mailto: default and copys the email to your clipboard instead.", "version": "1.5", "browser_action": { "default_icon": "email-to-clipboard-logo.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "index.js" ], "css": [ "tooltip.css" ], "run_at": "document_idle" } ] } |