Chatgpt assist

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

Hvad er Chatgpt assist?

Chatgpt assist er en Chrome-udvidelse udviklet af Abu, og dens hovedfunktion er "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Udvidelsesskærmbilleder

screenshot

Download Chatgpt assist-udvidelses-CRX-fil

Download Chatgpt assist-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Officiel URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Beskrivelse No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Filstørrelse 790 KB
Antal Installationer 1,289
Nuværende Version 0.0.4
Senest Opdateret 2023-02-05
Udgivelsesdato 2022-12-07
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler Abu
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://www.claritynotes.io/privacypolicy.html
Understøttede Sprog 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'"
    }
}