Smarter Reply for Gmail
Create custom email responses for Gmail Smart Reply.
Smarter Reply for Gmail क्या है?
Smarter Reply for Gmail Jonathan Shobrook द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create custom email responses for Gmail Smart Reply."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Smarter Reply for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |