RenderGPT
A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes.
RenderGPTคืออะไร?
RenderGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matthew Downey และคุณลักษณะหลักของมันคือ "A Chrome extension to render HTML/JavaScript/CSS from ChatGPT into iframes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RenderGPT
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } ] } |