eMailTo:Clipboard

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

Hvad er eMailTo:Clipboard?

eMailTo:Clipboard er en Chrome-udvidelse udviklet af aturkewi, og dens hovedfunktion er "This extension overides the html mailto: default and copys the email to your clipboard instead.".

Download eMailTo:Clipboard-udvidelses-CRX-fil

Download eMailTo:Clipboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn eMailTo:Clipboard eMailTo:Clipboard
ID dpckhpnekcojocijmcdpondmicbkbgpo
Officiel URL https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo
Beskrivelse This extension overides the html mailto: default and copys the email to your clipboard instead.
Filstørrelse 23.48 KB
Antal Installationer 193
Nuværende Version 1.5
Senest Opdateret 2017-03-07
Udgivelsesdato 2017-03-07
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler aturkewi
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}