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 là gì?

Copy mailto links to clipboard là một tiện ích mở rộng Chrome được phát triển bởi anthonybruno, và tính năng chính của nó là "When you click a mailto link, all email addresses are directly copied to the clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy mailto links to clipboard

Tải xuống các tệp mở rộng Copy mailto links to clipboard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy mailto links to clipboard Copy mailto links to clipboard
ID ocffkcplakjlhbaadfcokiiflaelnaib
URL Chính Thức https://chromewebstore.google.com/detail/copy-mailto-links-to-clip/ocffkcplakjlhbaadfcokiiflaelnaib
Mô tả When you click a mailto link, all email addresses are directly copied to the clipboard.
Kích Thước Tệp 15.52 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2023-04-19
Ngày Phát Hành 2023-04-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển anthonybruno
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://abruno.net
URL Trang Trợ Giúp https://abruno.net/copy-mailto-privacy.html
URL Trang Chính Sách Bảo Mật https://abruno.net/copy-mailto-privacy.html
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}