Chatgpt assist

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

Wat is Chatgpt assist?

Chatgpt assist is een Chrome-extensie ontwikkeld door Abu, en de belangrijkste functie is "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Chatgpt assist

Download Chatgpt assist-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Officiële URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Beschrijving No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Bestandsgrootte 790 KB
Aantal Installaties 1,289
Huidige Versie 0.0.4
Laatst Bijgewerkt 2023-02-05
Publicatiedatum 2022-12-07
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Abu
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.claritynotes.io/privacypolicy.html
Ondersteunde Talen 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'"
    }
}