eMailTo:Clipboard
This extension overides the html mailto: default and copys the email to your clipboard instead.
eMailTo:Clipboardคืออะไร?
eMailTo:Clipboard เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aturkewi และคุณลักษณะหลักของมันคือ "This extension overides the html mailto: default and copys the email to your clipboard instead."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย eMailTo:Clipboard
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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" } ] } |