ChassistantGPT

Use ChatGPT as your personal assistant

ChassistantGPT란 무엇입니까?

ChassistantGPT은(는) idosalomon에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use ChatGPT as your personal assistant"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ChassistantGPT is a ChatGPT voice assistant. It allows you to send prompts to ChatGPT via voice and hear the response from anywhere! ChassistantGPT supports 60+ languages and dialects.

How To Use
Say "Hey girl" followed by your prompt. For example: "Hey girl, what is love?" or "Hey girl... Tell me a joke". You can also configure a custom trigger phrase instead of "Hey girl". Alternatively, you may trigger ChassistantGPT by pressing Cmd/Ctrl + Shift + E from anywhere in the browser.
If a prompt follows as part of the same sentence, ChassistantGPT will forward the prompt directly to ChatGPT. If not, a "beep" sound will follow (accompanied by switching of the popup icon to red), signifying ChassistantGPT is waiting for input.
Before sending to ChatGPT, ChassistantGPT will say "OK, coming up". While waiting for a response from ChatGPT, the popup icon will turn green.
In addition to the voice response from ChatGPT, you can view the full conversation at any time by clicking on ChassistantGPT's popup.
You may stop ChassistantGPT's voice playback at any time by pressing Cmd/Ctrl + B.
If you closed the extension's tab, you can reopen it by reopening the browser or reloading the extension.

Privacy
ChassistantGPT relies on your existing session with ChatGPT. If you aren't logged in, please do so at https://chat.openai.com/chat.

The extension does not store any data. It does not transmit data from your device, except for the sentence that directly follows the "Hey, girl" command, which is sent straight to ChatGPT. The extension's only permission is limited access to `chat.openai.com` (webpage + fetch without CORS).                    

확장 프로그램 기본 정보

이름 ChassistantGPT ChassistantGPT
ID kepjfakbnekbifkjnfhmoilbbnncnfjc
공식 URL https://chromewebstore.google.com/detail/chassistantgpt/kepjfakbnekbifkjnfhmoilbbnncnfjc
설명 Use ChatGPT as your personal assistant
파일 크기 173 KB
설치 횟수 1,892
현재 버전 1.6.1
최근 업데이트 2022-12-19
출시 날짜 2022-12-12
평점 2.67/5 총 6 개의 평점
개발자 idosalomon
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/idosal/assistant-chat-gpt
도움말 페이지 URL https://github.com/idosal/assistant-chat-gpt/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChassistantGPT",
    "description": "Use ChatGPT as your personal assistant",
    "version": "1.6.1",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/logo.png",
        "32": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "commands": {
        "stop-playback": {
            "suggested_key": {
                "windows": "Ctrl+B",
                "mac": "Command+B",
                "chromeos": "Ctrl+B",
                "linux": "Ctrl+B"
            },
            "description": "Stop assistant playback"
        },
        "start-listening": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E",
                "mac": "Command+Shift+E",
                "chromeos": "Ctrl+Shift+E",
                "linux": "Ctrl+Shift+E"
            },
            "description": "Push to toggle listening to voice commands"
        }
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "background": {
        "service_worker": "background\/index.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_icon": {
            "16": "assets\/logo.png",
            "32": "assets\/logo.png",
            "48": "assets\/logo.png",
            "128": "assets\/logo.png"
        },
        "default_title": "ChassistantGPT"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "content\/index.html"
    }
}