ScrAIbe
A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
ScrAIbe क्या है?
ScrAIbe gastonmaffei द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ScrAIbe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
ScrAIbe is a Chrome extension that helps users write better emails using the power of GPT-3. With ScrAIbe, you can generate a response to an email based on the previous conversation and your instructions, allowing you to write emails faster and more efficiently. Simply click on the 'Use ChatGPT' button in your Gmail compose window to generate a response, and ScrAIbe will do the rest. Try ScrAIbe today and start writing smarter emails with AI.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nbdpcanokjfhkogegcnpfkbfggbfnhfa |
आधिकारिक URL | https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa |
विवरण | A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT |
फ़ाइल का आकार | 23.1 KB |
स्थापना संख्या | 136 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2022-12-08 |
प्रकाशन तिथि | 2022-12-07 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | gastonmaffei |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Popeyef5/ScrAIbe |
सहायता पृष्ठ URL | https://github.com/Popeyef5/ScrAIbe |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ScrAIbe", "description": "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT", "version": "0.0.1", "permissions": [ "storage", "https:\/\/api.openai.com\/v1\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "action": { "default_title": "ScrAIbe - OpenAI API Key", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |