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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } |