RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
RenderGPTとは何ですか?
RenderGPTはMatthew Downeyによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.」です。
拡張機能のスクリーンショット
RenderGPT拡張機能のCRXファイルをダウンロード
RenderGPT拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } ] } |