Chatgpt assist

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

Τι είναι το Chatgpt assist;

Το Chatgpt assist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Abu, και η κύρια λειτουργία του είναι "No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Chatgpt assist

Λήψη αρχείων επέκτασης Chatgpt assist σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chatgpt assist Chatgpt assist
ID fhdcoikaffdfehjpfkcaackmflcnjcom
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-assist/fhdcoikaffdfehjpfkcaackmflcnjcom
Περιγραφή No more hassle of copying code from chat gpt results to the replit. This extension provides add-on features to the existing…
Μέγεθος Αρχείου 790 KB
Αριθμός Εγκαταστάσεων 1,289
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2023-02-05
Ημερομηνία Δημοσίευσης 2022-12-07
Αξιολόγηση 2.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής Abu
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.claritynotes.io/privacypolicy.html
Υποστηριζόμενες Γλώσσες 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'"
    }
}