ChatGPT Extra
Dynamically renders HTML code blocks inline as the page is being created.
Qu'est-ce que ChatGPT Extra ?
ChatGPT Extra est une extension Chrome développée par Filipe Almeida, et sa fonction principale est "Dynamically renders HTML code blocks inline as the page is being created.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Extra
Téléchargez les fichiers d'extension ChatGPT Extra au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ChatGPT Extra |
ID | ampbkjcmmefhmillnhoedcaonipplcbi |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-extra/ampbkjcmmefhmillnhoedcaonipplcbi |
Description | Dynamically renders HTML code blocks inline as the page is being created. |
Taille du Fichier | 4.87 KB |
Nombre d'Installations | 36 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2023-06-09 |
Date de Publication | 2023-04-14 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Filipe Almeida |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |