Copy Mailto

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

Was ist Copy Mailto?

Copy Mailto ist eine Chrome-Erweiterung, die von Prateek Surana entwickelt wurde, und ihr Hauptmerkmal ist "An extension to copy email and telephone links from the web.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Copy Mailto-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Mailto-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Copy Mailto Copy Mailto
ID ogmiianinhflijjkddacmlnglfgdcecf
Offizielle URL https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf
Beschreibung An extension to copy email and telephone links from the web.
Dateigröße 28.93 KB
Installationsanzahl 18
Aktuelle Version 1.0
Letztes Update 2020-11-29
Veröffentlichungsdatum 2020-11-19
Entwickler Prateek Surana
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}