eMailTo:Clipboard

This extension overides the html mailto: default and copys the email to your clipboard instead.

What is eMailTo:Clipboard?

eMailTo:Clipboard is a Chrome extension developed by aturkewi, and its main feature is "This extension overides the html mailto: default and copys the email to your clipboard instead.".

Download eMailTo:Clipboard Extension CRX File

Download eMailTo:Clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        When installed, this app will overide the mailto in an html link and just copy the email address to your clipboard rather than opening up your default mail client.                    

Extension Basic Information

Name eMailTo:Clipboard eMailTo:Clipboard
ID dpckhpnekcojocijmcdpondmicbkbgpo
Official URL https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo
Description This extension overides the html mailto: default and copys the email to your clipboard instead.
File Size 23.48 KB
Installation Count 193
Current Version 1.5
Last Updated 2017-03-07
Publish Date 2017-03-07
Rating 5.00/5 Total 4 Ratings
Developer aturkewi
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eMailTo:Clipboard",
    "description": "This extension overides the html mailto: default and copys the email to your clipboard instead.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "email-to-clipboard-logo.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "tooltip.css"
            ],
            "run_at": "document_idle"
        }
    ]
}