Chatgpt assist

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

Co je Chatgpt assist?

Chatgpt assist je rozšíření Chrome vyvinuté Abu, a jeho hlavní funkcí je „No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Chatgpt assist

Stáhněte si soubory rozšíření Chatgpt assist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Popis No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Velikost souboru 790 KB
Počet instalací 1,289
Aktuální Verze 0.0.4
Poslední Aktualizace 2023-02-05
Datum Vydání 2022-12-07
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář Abu
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.claritynotes.io/privacypolicy.html
Podporované Jazyky 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'"
    }
}