Chatgpt assist

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

Apa itu Chatgpt assist?

Chatgpt assist adalah ekstensi Chrome yang dikembangkan oleh Abu, dan fitur utamanya adalah "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Chatgpt assist

Unduh file ekstensi Chatgpt assist dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
URL Resmi https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Deskripsi No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Ukuran File 790 KB
Jumlah Instalasi 1,289
Versi Saat Ini 0.0.4
Terakhir Diperbarui 2023-02-05
Tanggal Publikasi 2022-12-07
Penilaian 2.33/5 Total 3 Penilaian
Pengembang Abu
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://www.claritynotes.io/privacypolicy.html
Bahasa yang Didukung 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'"
    }
}