RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
Co to jest RenderGPT?
RenderGPT to rozszerzenie Chrome opracowane przez Matthew Downey, a jego główną funkcją jest „A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia RenderGPT
Pobierz pliki rozszerzeń RenderGPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | RenderGPT |
ID | faedgcadnkineopgicfikgggjjapeeon |
Oficjalny URL | https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon |
Opis | A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes. |
Rozmiar pliku | 1.31 MB |
Liczba instalacji | 152 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2023-06-05 |
Data Publikacji | 2023-04-03 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Matthew Downey |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/matthewdowney/rendergpt |
Obsługiwane Języki | 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" ] } ] } |