RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
O que é RenderGPT?
RenderGPT é uma extensão do Chrome desenvolvida por Matthew Downey, e sua principal característica é "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão RenderGPT
Baixe arquivos de extensão RenderGPT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | RenderGPT |
ID | faedgcadnkineopgicfikgggjjapeeon |
URL Oficial | https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon |
Descrição | A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes. |
Tamanho do Arquivo | 1.31 MB |
Contagem de Instalações | 152 |
Versão Atual | 1.3 |
Última Atualização | 2023-06-05 |
Data de Publicação | 2023-04-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Matthew Downey |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/matthewdowney/rendergpt |
Idiomas Suportados | 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" ] } ] } |