ChatGPT Extra
Dynamically renders HTML code blocks inline as the page is being created.
Apa itu ChatGPT Extra?
ChatGPT Extra adalah ekstensi Chrome yang dikembangkan oleh Filipe Almeida, dan fitur utamanya adalah "Dynamically renders HTML code blocks inline as the page is being created.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChatGPT Extra
Unduh file ekstensi ChatGPT Extra dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ChatGPT Extra |
ID | ampbkjcmmefhmillnhoedcaonipplcbi |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi |
Deskripsi | Dynamically renders HTML code blocks inline as the page is being created. |
Ukuran File | 4.87 KB |
Jumlah Instalasi | 36 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2023-06-09 |
Tanggal Publikasi | 2023-04-14 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Filipe Almeida |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/*" ] } |