RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
RenderGPT là gì?
RenderGPT là một tiện ích mở rộng Chrome được phát triển bởi Matthew Downey, và tính năng chính của nó là "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RenderGPT
Tải xuống các tệp mở rộng RenderGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RenderGPT |
ID | faedgcadnkineopgicfikgggjjapeeon |
URL Chính Thức | https://chromewebstore.google.com/detail/rendergpt/faedgcadnkineopgicfikgggjjapeeon |
Mô tả | A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes. |
Kích Thước Tệp | 1.31 MB |
Số Lần Cài Đặt | 152 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2023-06-05 |
Ngày Phát Hành | 2023-04-03 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Matthew Downey |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/matthewdowney/rendergpt |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |