Halist AI
Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.
Qu'est-ce que Halist AI ?
Halist AI est une extension Chrome développée par https://halist.ai, et sa fonction principale est "Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Halist AI
Téléchargez les fichiers d'extension Halist AI 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
USE HALIST AI TO — Get answers to your questions quickly directly from the browser's toolbar — Save time and boost productivity with AI-assisted email responses in Gmail — Take your writing to the next level; simply right-click an editable input to have the AI write content for you — Select text when browsing and right-click to summarize, respond or improve your grammar — Built with ChatGPT API PRIVACY AND SAFETY — Halist is private, and no messages are stored on our servers — Sign-in with Google is used for safe authentication — We partner with OpenAI to provide the core AI service PRICING — Free: $0/month, 50 usages per month — Starter: $4/month, 300 usages per month — Pro: $9/month, Unlimited usages per month
Informations de Base sur l'Extension
Nom | Halist AI |
ID | fbpfkdadaghhgfcnaljbkjmfaaclohdb |
URL Officiel | https://chromewebstore.google.com/detail/halist-ai/fbpfkdadaghhgfcnaljbkjmfaaclohdb |
Description | Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more. |
Taille du Fichier | 2.02 MB |
Nombre d'Installations | 906 |
Version Actuelle | 2.7 |
Dernière Mise à Jour | 2023-05-03 |
Date de Publication | 2023-02-02 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | https://halist.ai |
[email protected] | |
Type de Paiement | in_app |
Site Web de l'Extension | https://halist.ai/chrome |
URL de la Page de Politique de Confidentialité | https://halist.ai/privacy |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Halist AI", "version": "2.7", "manifest_version": 3, "icons": { "128": "icon.png", "256": "[email protected]", "512": "[email protected]" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html?action=chat", "default_icon": "[email protected]" }, "description": "Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.", "permissions": [ "activeTab", "contextMenus", "scripting", "storage" ], "host_permissions": [ "https:\/\/mail.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "gmail_plugin\/content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/halist.ai\/logged_in*", "https:\/\/amix3k.loca.lt\/logged_in*" ], "js": [ "logged_in.js" ], "run_at": "document_end" } ] } |