ChatGPT Code Previewer
A simple extension to render HTML (with CSS and JS), SVG, and Markdown code generated by ChatGPT directly on the page.
O que é ChatGPT Code Previewer?
ChatGPT Code Previewer é uma extensão do Chrome desenvolvida por yangguang, e sua principal característica é "A simple extension to render HTML (with CSS and JS), SVG, and Markdown code generated by ChatGPT directly on the page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Code Previewer
Baixe arquivos de extensão ChatGPT Code Previewer 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 simple extension to render HTML or SVG code generated by ChatGPT directly on the page. When you ask ChatGPT coding questions, it outputs the raw code for you. Then you need to copy paste the code locally, or to CodePen etc. to view it. No more manual copy-pasting! With this extension, the rendered code will directly show on the chat thread, with a toggle switching between code & preview. Works on HTML and SVG code blocks. And if you want to edit the code, this extension also provides ONE-CLICK to open the code in CodePen!
Informações Básicas da Extensão
Nome | ChatGPT Code Previewer |
ID | nneehoocngeghjollhggekdneijekaib |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-code-previewer/nneehoocngeghjollhggekdneijekaib |
Descrição | A simple extension to render HTML (with CSS and JS), SVG, and Markdown code generated by ChatGPT directly on the page. |
Tamanho do Arquivo | 36.33 KB |
Contagem de Instalações | 895 |
Versão Atual | 1.3 |
Última Atualização | 2023-08-14 |
Data de Publicação | 2023-04-03 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | yangguang |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://chatgpt-code-previewer.vercel.app/ |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Code Previewer", "description": "A simple extension to render HTML (with CSS and JS), SVG, and Markdown code generated by ChatGPT directly on the page.", "author": "[email protected]", "version": "1.3", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "marked.js", "script-shared.js", "script-openai.js" ], "css": [ "styles.css" ], "runAi": "document_idle" } ] } |