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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://abruno.net/copy-mailto-privacy.html
عنوان صفحة سياسة الخصوصية 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:\/\/*\/*"
            ]
        }
    ]
}