Copy Mailto

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

¿Qué es Copy Mailto?

Copy Mailto es una extensión de Chrome desarrollada por Prateek Surana, y su función principal es "An extension to copy email and telephone links from the web.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy Mailto

Descarga archivos de extensión Copy Mailto en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Copy Mailto Copy Mailto
ID ogmiianinhflijjkddacmlnglfgdcecf
URL Oficial https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf
Descripción An extension to copy email and telephone links from the web.
Tamaño del Archivo 28.93 KB
Cantidad de Instalaciones 18
Versión Actual 1.0
Última Actualización 2020-11-29
Fecha de Publicación 2020-11-19
Desarrollador Prateek Surana
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}