ChatGPT Extra
Dynamically renders HTML code blocks inline as the page is being created.
What is ChatGPT Extra?
ChatGPT Extra is a Chrome extension developed by Filipe Almeida, and its main feature is "Dynamically renders HTML code blocks inline as the page is being created.".
Extension Screenshots
Download ChatGPT Extra Extension CRX File
Download ChatGPT Extra extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ChatGPT Extra |
ID | ampbkjcmmefhmillnhoedcaonipplcbi |
Official URL | https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi |
Description | Dynamically renders HTML code blocks inline as the page is being created. |
File Size | 4.87 KB |
Installation Count | 36 |
Current Version | 1.0.1 |
Last Updated | 2023-06-09 |
Publish Date | 2023-04-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Filipe Almeida |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |