Copy mailto links to clipboard
When you click a mailto link, all email addresses are directly copied to the clipboard.
什么是Copy mailto links to clipboard?
Copy mailto links to clipboard是由anthonybruno开发的Chrome扩展程序,该扩展的主要功能是“When you click a mailto link, all email addresses are directly copied to the clipboard.”。
扩展截图
下载Copy mailto links to clipboard扩展crx文件
下载Copy mailto links to clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When you click on a link that begins with "mailto," all of the email addresses are immediately copied to the clipboard. Instead of opening Outlook or Mail.app by default, this extension copies all email addresses within a mailto link directly to the clipboard. - Supports all kinds of email address - Automatically ignores bcc, subject, etc. - Copies directly to your system's clipboard - Provides a notification when the address is successfully copied - Supports light and dark mode - Can turn alert off and copy email silently
扩展基本信息
名称 | Copy mailto links to clipboard |
ID | ocffkcplakjlhbaadfcokiiflaelnaib |
官方URL | https://chromewebstore.google.com/detail/copy-mailto-links-to-clip/ocffkcplakjlhbaadfcokiiflaelnaib |
简介 | When you click a mailto link, all email addresses are directly copied to the clipboard. |
文件大小 | 15.52 KB |
安装次数 | 58 |
当前版本 | 0.2 |
更新时间 | 2023-04-19 |
上架时间 | 2023-04-17 |
评分 | 5.00/5 共2次评分 |
开发者 | anthonybruno |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://abruno.net |
帮助页面URL | https://abruno.net/copy-mailto-privacy.html |
隐私政策页面URL | https://abruno.net/copy-mailto-privacy.html |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy mailto links to clipboard", "version": "0.2", "description": "When you click a mailto link, all email addresses are directly copied to the clipboard.", "options_ui": { "page": "options.html", "open_in_tab": true }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |