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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}