ChatGPT Extra
Dynamically renders HTML code blocks inline as the page is being created.
Co je ChatGPT Extra?
ChatGPT Extra je rozšíření Chrome vyvinuté Filipe Almeida, a jeho hlavní funkcí je „Dynamically renders HTML code blocks inline as the page is being created.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření ChatGPT Extra
Stáhněte si soubory rozšíření ChatGPT Extra ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ChatGPT Extra |
ID | ampbkjcmmefhmillnhoedcaonipplcbi |
Oficiální URL | https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi |
Popis | Dynamically renders HTML code blocks inline as the page is being created. |
Velikost souboru | 4.87 KB |
Počet instalací | 36 |
Aktuální Verze | 1.0.1 |
Poslední Aktualizace | 2023-06-09 |
Datum Vydání | 2023-04-14 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Filipe Almeida |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } |