ChassistantGPT

Use ChatGPT as your personal assistant

Τι είναι το ChassistantGPT;

Το ChassistantGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον idosalomon, και η κύρια λειτουργία του είναι "Use ChatGPT as your personal assistant".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChassistantGPT

Λήψη αρχείων επέκτασης ChassistantGPT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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