Chatgpt assist

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

Vad är Chatgpt assist?

Chatgpt assist är en Chrome-tillägg utvecklad av Abu, och dess huvudfunktion är "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Tilläggsskärmbilder

screenshot

Ladda ner Chatgpt assist-förlängningens CRX-fil

Ladda ner Chatgpt assist-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Beskrivning No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Filstorlek 790 KB
Antal Installationer 1,289
Aktuell Version 0.0.4
Senast Uppdaterad 2023-02-05
Publiceringsdatum 2022-12-07
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare Abu
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://www.claritynotes.io/privacypolicy.html
Stödda Språk 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'"
    }
}