eMailTo:Clipboard

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

Vad är eMailTo:Clipboard?

eMailTo:Clipboard är en Chrome-tillägg utvecklad av aturkewi, och dess huvudfunktion är "This extension overides the html mailto: default and copys the email to your clipboard instead.".

Ladda ner eMailTo:Clipboard-förlängningens CRX-fil

Ladda ner eMailTo:Clipboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn eMailTo:Clipboard eMailTo:Clipboard
ID dpckhpnekcojocijmcdpondmicbkbgpo
Officiell webbadress https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo
Beskrivning This extension overides the html mailto: default and copys the email to your clipboard instead.
Filstorlek 23.48 KB
Antal Installationer 193
Aktuell Version 1.5
Senast Uppdaterad 2017-03-07
Publiceringsdatum 2017-03-07
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare aturkewi
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}