Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Smarter Reply for Gmailคืออะไร?
Smarter Reply for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Shobrook และคุณลักษณะหลักของมันคือ "Create custom email responses for Gmail Smart Reply."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smarter Reply for Gmail
ดาวน์โหลดไฟล์ส่วนขยาย Smarter Reply for Gmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Gmail has a feature called "Smart Reply," where users can select from a list of recommended responses when replying to an email. But Gmail doesn't allow you to create your own smart replies. Smarter Reply for Gmail is a Chrome extension which does let you create custom replies, and will learn to suggest the right reply for a given email.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Smarter Reply for Gmail |
ID | mnclffmabpkinejmfajagggbmehcilgi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
คำอธิบาย | Create custom email responses for Gmail Smart Reply. |
ขนาดไฟล์ | 1.42 MB |
จำนวนการติดตั้ง | 178 |
เวอร์ชันปัจจุบัน | 0.0.0.1 |
อัปเดตครั้งล่าสุด | 2021-02-24 |
วันที่เผยแพร่ | 2021-02-23 |
ผู้พัฒนา | Jonathan Shobrook |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/shobrook/smarterreply |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smarter Reply for Gmail", "description": "Create custom email responses for Gmail Smart Reply.", "version": "0.0.0.1", "manifest_version": 2, "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ "assets\/stopwords.json" ], "browser_action": { "default_title": "Smarter Reply for Gmail", "default_icon": "assets\/icon.png" }, "background": { "scripts": [ "extension\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*", "http:\/\/www.mail.google.com\/*", "https:\/\/www.mail.google.com\/*" ], "js": [ "extension\/content.js" ], "run_at": "document_end" } ] } |