Copy Mailto
An extension to copy email and telephone links from the web.
Copy Mailtoとは何ですか?
Copy MailtoはPrateek Suranaによって開発されたChromeの拡張機能で、その主な機能は「An extension to copy email and telephone links from the web.」です。
拡張機能のスクリーンショット
Copy Mailto拡張機能のCRXファイルをダウンロード
Copy Mailto拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The one thing we can all agree on is that we hate it when the default mail app pops up after clicking on the mailto link. Most of the time we just want to copy the email address and that's where this extension comes into play. This extension adds a tooltip to the mailto and tel links allowing you to copy the email or phone number in those links directly instead of popping up the default apps for them.
拡張機能の基本情報
名前 | Copy Mailto |
ID | ogmiianinhflijjkddacmlnglfgdcecf |
公式URL | https://chromewebstore.google.com/detail/copy-mailto/ogmiianinhflijjkddacmlnglfgdcecf |
説明 | An extension to copy email and telephone links from the web. |
ファイルサイズ | 28.93 KB |
インストール数 | 18 |
現在のバージョン | 1.0 |
最終更新日 | 2020-11-29 |
公開日 | 2020-11-19 |
開発者 | Prateek Surana |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Mailto", "version": "1.0", "description": "An extension to copy email and telephone links from the web.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "browser_action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "144": "images\/icon-144.png", "192": "images\/icon-192.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "144": "images\/icon-144.png", "192": "images\/icon-192.png" } } |