Copy Mailto

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

Copy Mailto क्या है?

Copy Mailto Prateek Surana द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to copy email and telephone links from the web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Copy Mailto एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}