ChatGPT Extra
Dynamically renders HTML code blocks inline as the page is being created.
ChatGPT Extraคืออะไร?
ChatGPT Extra เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Filipe Almeida และคุณลักษณะหลักของมันคือ "Dynamically renders HTML code blocks inline as the page is being created."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Extra
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Extra ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a useful feature that allows you to view inline HTML code snippets directly in your chat window for chat.openai.com. Once installed, you can simply click the "🌐 Toggle Rendering" button to switch between the HTML code and a rendered preview. The extension uses an iframe to safely display the rendered HTML code.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Extra |
ID | ampbkjcmmefhmillnhoedcaonipplcbi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi |
คำอธิบาย | Dynamically renders HTML code blocks inline as the page is being created. |
ขนาดไฟล์ | 4.87 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2023-06-09 |
วันที่เผยแพร่ | 2023-04-14 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Filipe Almeida |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Extra", "version": "1.0.1", "description": "Dynamically renders HTML code blocks inline as the page is being created.", "author": "Filipe Almeida", "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.js" ] } ], "host_permissions": [ "https:\/\/chat.openai.com\/*" ] } |