Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Smarter Reply for Gmail란 무엇입니까?
Smarter Reply for Gmail은(는) Jonathan Shobrook에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create custom email responses for Gmail Smart Reply."입니다.
확장 프로그램 스크린샷
Smarter Reply for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |