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
公式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
Eメール [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:\/\/*\/*"
            ]
        }
    ]
}