RenderGPT

A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.

Τι είναι το RenderGPT;

Το RenderGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matthew Downey, και η κύρια λειτουργία του είναι "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".

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

screenshot
screenshot
screenshot

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

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

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

                        A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.

The extension adds a "render" button to any HTML or PlantUML code blocks in a ChatGPT conversation.

Clicking the button renders the HTML in an iframe, and allows selecting other code blocks (JavaScript, CSS) from the conversation for inclusion, mixing and matching sources.

See examples at https://github.com/matthewdowney/rendergpt.                    

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

Όνομα RenderGPT RenderGPT
ID faedgcadnkineopgicfikgggjjapeeon
Επίσημο URL https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon
Περιγραφή A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
Μέγεθος Αρχείου 1.31 MB
Αριθμός Εγκαταστάσεων 152
Τρέχουσα Έκδοση 1.3
Τελευταία Ενημέρωση 2023-06-05
Ημερομηνία Δημοσίευσης 2023-04-03
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Matthew Downey
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/matthewdowney/rendergpt
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "RenderGPT",
    "description": "A Chrome extension to render HTML\/JavaScript\/CSS from ChatGPT into iframes.",
    "version": "1.3",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content_proxy.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "js\/*",
                "rendergpt.css"
            ]
        }
    ]
}