ScrAIbe
A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
Qu'est-ce que ScrAIbe ?
ScrAIbe est une extension Chrome développée par gastonmaffei, et sa fonction principale est "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ScrAIbe
Téléchargez les fichiers d'extension ScrAIbe au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | nbdpcanokjfhkogegcnpfkbfggbfnhfa |
URL Officiel | https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa |
Description | A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT |
Taille du Fichier | 23.1 KB |
Nombre d'Installations | 136 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2022-12-08 |
Date de Publication | 2022-12-07 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | gastonmaffei |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Popeyef5/ScrAIbe |
URL de la Page d'Aide | https://github.com/Popeyef5/ScrAIbe |
Langues Prises en Charge | 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" } } |