Copy Mailto

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

Apa itu Copy Mailto?

Copy Mailto adalah ekstensi Chrome yang dikembangkan oleh Prateek Surana, dan fitur utamanya adalah "An extension to copy email and telephone links from the web.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Copy Mailto

Unduh file ekstensi Copy Mailto dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Copy Mailto Copy Mailto
ID ogmiianinhflijjkddacmlnglfgdcecf
URL Resmi https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf
Deskripsi An extension to copy email and telephone links from the web.
Ukuran File 28.93 KB
Jumlah Instalasi 18
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-11-29
Tanggal Publikasi 2020-11-19
Pengembang Prateek Surana
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}