Copy Mailto
An extension to copy email and telephone links from the web.
Copy Mailtoคืออะไร?
Copy Mailto เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Prateek Surana และคุณลักษณะหลักของมันคือ "An extension to copy email and telephone links from the web."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy Mailto
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |