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是由anthonybruno開發的Chrome擴展程式,該擴展的主要功能是“When you click a mailto link, all email addresses are directly copied to the clipboard.”。

擴展截圖

screenshot
screenshot

下載Copy mailto links to clipboard擴展crx文件

下載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
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}