Copy mailto links to clipboard

When you click a mailto link, all email addresses are directly copied to the clipboard.

Was ist Copy mailto links to clipboard?

Copy mailto links to clipboard ist eine Chrome-Erweiterung, die von anthonybruno entwickelt wurde, und ihr Hauptmerkmal ist "When you click a mailto link, all email addresses are directly copied to the clipboard.".

Erweiterungsscreenshots

screenshot
screenshot

Copy mailto links to clipboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy mailto links to clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        When you click on a link that begins with "mailto," all of the email addresses are immediately copied to the clipboard.

Instead of opening Outlook or Mail.app by default, this extension copies all email addresses within a mailto link directly to the clipboard.

- Supports all kinds of email address
- Automatically ignores bcc, subject, etc.
- Copies directly to your system's clipboard
- Provides a notification when the address is successfully copied
- Supports light and dark mode
- Can turn alert off and copy email silently                    

Grundlegende Informationen zur Erweiterung

Name Copy mailto links to clipboard Copy mailto links to clipboard
ID ocffkcplakjlhbaadfcokiiflaelnaib
Offizielle URL https://chromewebstore.google.com/detail/copy-mailto-links-to-clip/ocffkcplakjlhbaadfcokiiflaelnaib
Beschreibung When you click a mailto link, all email addresses are directly copied to the clipboard.
Dateigröße 15.52 KB
Installationsanzahl 58
Aktuelle Version 0.2
Letztes Update 2023-04-19
Veröffentlichungsdatum 2023-04-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler anthonybruno
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://abruno.net
Hilfeseite URL https://abruno.net/copy-mailto-privacy.html
URL der Datenschutzrichtlinien-Seite https://abruno.net/copy-mailto-privacy.html
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy mailto links to clipboard",
    "version": "0.2",
    "description": "When you click a mailto link, all email addresses are directly copied to the clipboard.",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}