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.
Was ist Halist AI?
Halist AI ist eine Chrome-Erweiterung, die von https://halist.ai entwickelt wurde, und ihr Hauptmerkmal ist "Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.".
Erweiterungsscreenshots
Halist AI-Erweiterungs-CRX-Datei herunterladen
Laden Sie Halist AI-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fbpfkdadaghhgfcnaljbkjmfaaclohdb |
| Offizielle URL | https://chromewebstore.google.com/detail/halist-ai/fbpfkdadaghhgfcnaljbkjmfaaclohdb |
| Beschreibung | Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more. |
| Dateigröße | 2.02 MB |
| Installationsanzahl | 906 |
| Aktuelle Version | 2.7 |
| Letztes Update | 2023-05-03 |
| Veröffentlichungsdatum | 2023-02-02 |
| Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
| Entwickler | https://halist.ai |
| [email protected] | |
| Zahlungsart | in_app |
| Erweiterungswebsite | https://halist.ai/chrome |
| URL der Datenschutzrichtlinien-Seite | https://halist.ai/privacy |
| Unterstützte Sprachen | 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"
}
]
} | |