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.

Что такое Halist AI?

Halist AI - это расширение Chrome, разработанное https://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.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Halist AI

Скачайте файлы расширений Halist AI в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Halist AI Halist AI
ID fbpfkdadaghhgfcnaljbkjmfaaclohdb
Официальный URL https://chromewebstore.google.com/detail/halist-ai/fbpfkdadaghhgfcnaljbkjmfaaclohdb
Описание Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.
Размер файла 2.02 MB
Количество установок 906
Текущая Версия 2.7
Последнее Обновление 2023-05-03
Дата публикации 2023-02-02
Рейтинг 5.00/5 Всего 7 оценок
Разработчик https://halist.ai
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://halist.ai/chrome
URL страницы политики конфиденциальности https://halist.ai/privacy
Поддерживаемые языки 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"
        }
    ]
}