RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
Wat is RenderGPT?
RenderGPT is een Chrome-extensie ontwikkeld door Matthew Downey, en de belangrijkste functie is "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".
Extensie Screenshots
Download het CRX-bestand van de extensie RenderGPT
Download RenderGPT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | RenderGPT |
ID | faedgcadnkineopgicfikgggjjapeeon |
Officiële URL | https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon |
Beschrijving | A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes. |
Bestandsgrootte | 1.31 MB |
Aantal Installaties | 152 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-06-05 |
Publicatiedatum | 2023-04-03 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Matthew Downey |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/matthewdowney/rendergpt |
Ondersteunde Talen | 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" ] } ] } |