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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |