Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Smarter Reply for Gmail là gì?
Smarter Reply for Gmail là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Shobrook, và tính năng chính của nó là "Create custom email responses for Gmail Smart Reply.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Smarter Reply for Gmail
Tải xuống các tệp mở rộng Smarter Reply for Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Smarter Reply for Gmail |
ID | mnclffmabpkinejmfajagggbmehcilgi |
URL Chính Thức | https://chromewebstore.google.com/detail/smarter-reply-for-gmail/mnclffmabpkinejmfajagggbmehcilgi |
Mô tả | Create custom email responses for Gmail Smart Reply. |
Kích Thước Tệp | 1.42 MB |
Số Lần Cài Đặt | 178 |
Phiên Bản Hiện Tại | 0.0.0.1 |
Cập Nhật Lần Cuối | 2021-02-24 |
Ngày Phát Hành | 2021-02-23 |
Nhà Phát Triển | Jonathan Shobrook |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/shobrook/smarterreply |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |