Copy mailto links to clipboard

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

Τι είναι το Copy mailto links to clipboard;

Το Copy mailto links to clipboard είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον anthonybruno, και η κύρια λειτουργία του είναι "When you click a mailto link, all email addresses are directly copied to the clipboard.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Copy mailto links to clipboard

Λήψη αρχείων επέκτασης Copy mailto links to clipboard σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Copy mailto links to clipboard Copy mailto links to clipboard
ID ocffkcplakjlhbaadfcokiiflaelnaib
Επίσημο URL https://chromewebstore.google.com/detail/copy-mailto-links-to-clip/ocffkcplakjlhbaadfcokiiflaelnaib
Περιγραφή When you click a mailto link, all email addresses are directly copied to the clipboard.
Μέγεθος Αρχείου 15.52 KB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 0.2
Τελευταία Ενημέρωση 2023-04-19
Ημερομηνία Δημοσίευσης 2023-04-17
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής anthonybruno
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://abruno.net
Διεύθυνση URL της Σελίδας Βοήθειας https://abruno.net/copy-mailto-privacy.html
URL της Σελίδας Πολιτικής Απορρήτου https://abruno.net/copy-mailto-privacy.html
Υποστηριζόμενες Γλώσσες 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:\/\/*\/*"
            ]
        }
    ]
}