Copy Mailto

An extension to copy email and telephone links from the web.

什么是Copy Mailto?

Copy Mailto是由Prateek Surana开发的Chrome扩展程序,该扩展的主要功能是“An extension to copy email and telephone links from the web.”。

扩展截图

screenshot
screenshot
screenshot

下载Copy Mailto扩展crx文件

下载Copy Mailto扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The one thing we can all agree on is that we hate it when the default mail app pops up after clicking on the mailto link. Most of the time we just want to copy the email address and that's where this extension comes into play.

This extension adds a tooltip to the mailto and tel links allowing you to copy the email or phone number in those links directly instead of popping up the default apps for them.                    

扩展基本信息

名称 Copy Mailto Copy Mailto
ID ogmiianinhflijjkddacmlnglfgdcecf
官方URL https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf
简介 An extension to copy email and telephone links from the web.
文件大小 28.93 KB
安装次数 18
当前版本 1.0
更新时间 2020-11-29
上架时间 2020-11-19
开发者 Prateek Surana
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Mailto",
    "version": "1.0",
    "description": "An extension to copy email and telephone links from the web.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png",
            "144": "images\/icon-144.png",
            "192": "images\/icon-192.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png",
        "144": "images\/icon-144.png",
        "192": "images\/icon-192.png"
    }
}