RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
RenderGPT क्या है?
RenderGPT Matthew Downey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RenderGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |