Chatgpt assist

No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…

Was ist Chatgpt assist?

Chatgpt assist ist eine Chrome-Erweiterung, die von Abu entwickelt wurde, und ihr Hauptmerkmal ist "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Erweiterungsscreenshots

screenshot

Chatgpt assist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chatgpt assist-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

                        No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing chat-gpt website in opening the replit editor where you can paste the code inside.

More to come:
- Export the conversation in single click.                    

Grundlegende Informationen zur Erweiterung

Name Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Beschreibung No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Dateigröße 790 KB
Installationsanzahl 1,289
Aktuelle Version 0.0.4
Letztes Update 2023-02-05
Veröffentlichungsdatum 2022-12-07
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler Abu
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.claritynotes.io/privacypolicy.html
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.4",
    "short_name": "Chatgpt assist",
    "name": "Chatgpt assist",
    "action": [],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "style.css",
                "modal.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.stackgpt.com\/*"
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}