eMailTo:Clipboard

This extension overides the html mailto: default and copys the email to your clipboard instead.

eMailTo:Clipboardとは何ですか?

eMailTo:Clipboardはaturkewiによって開発されたChromeの拡張機能で、その主な機能は「This extension overides the html mailto: default and copys the email to your clipboard instead.」です。

eMailTo:Clipboard拡張機能のCRXファイルをダウンロード

eMailTo:Clipboard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        When installed, this app will overide the mailto in an html link and just copy the email address to your clipboard rather than opening up your default mail client.                    

拡張機能の基本情報

名前 eMailTo:Clipboard eMailTo:Clipboard
ID dpckhpnekcojocijmcdpondmicbkbgpo
公式URL https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo
説明 This extension overides the html mailto: default and copys the email to your clipboard instead.
ファイルサイズ 23.48 KB
インストール数 193
現在のバージョン 1.5
最終更新日 2017-03-07
公開日 2017-03-07
評価 5.00/5 合計 4 レビュー
開発者 aturkewi
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "eMailTo:Clipboard",
    "description": "This extension overides the html mailto: default and copys the email to your clipboard instead.",
    "version": "1.5",
    "browser_action": {
        "default_icon": "email-to-clipboard-logo.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "tooltip.css"
            ],
            "run_at": "document_idle"
        }
    ]
}