eMailTo:Clipboard

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

Wat is eMailTo:Clipboard?

eMailTo:Clipboard is een Chrome-extensie ontwikkeld door aturkewi, en de belangrijkste functie is "This extension overides the html mailto: default and copys the email to your clipboard instead.".

Download het CRX-bestand van de extensie eMailTo:Clipboard

Download eMailTo:Clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam eMailTo:Clipboard eMailTo:Clipboard
ID dpckhpnekcojocijmcdpondmicbkbgpo
Officiële URL https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo
Beschrijving This extension overides the html mailto: default and copys the email to your clipboard instead.
Bestandsgrootte 23.48 KB
Aantal Installaties 193
Huidige Versie 1.5
Laatst Bijgewerkt 2017-03-07
Publicatiedatum 2017-03-07
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar aturkewi
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}