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:\/\/*\/*"
            ]
        }
    ]
}