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은(는) https://halist.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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

Halist AI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}