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 |
官方網址 | 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 |
電子郵箱 | [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" } } |