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