ChatGPT Code Highlighter
Improve the appearance of code snippets in ChatGPT code snippets.
ما هو ChatGPT Code Highlighter؟
ChatGPT Code Highlighter هو إضافة Chrome تم تطويرها بواسطة Tantris، والميزة الرئيسية لها هي "Improve the appearance of code snippets in ChatGPT code snippets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChatGPT Code Highlighter
قم بتنزيل ملفات الامتداد ChatGPT Code Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Welcome to ChatGPT Code Highlighter! This Chrome extension enhances readability and understanding by applying syntax highlighting to code snippets within ChatGPT conversations. Usage: 1. Click on the extension icon in your browser toolbar. 2. A popup will appear displaying a dropdown menu with the available themes. 3. Select your desired theme and click the "Apply Theme" button. 4. Your selected theme will be applied to all code snippets in ChatGPT.
معلومات أساسية عن التمديد
الاسم | ChatGPT Code Highlighter |
ID | fideanlgimnffbhocnkbdpmfngiccaho |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/chatgpt-code-highlighter/fideanlgimnffbhocnkbdpmfngiccaho |
الوصف | Improve the appearance of code snippets in ChatGPT code snippets. |
حجم الملف | 35.78 KB |
عدد التثبيتات | 58 |
النسخة الحالية | 1.0 |
آخر تحديث | 2024-02-12 |
تاريخ النشر | 2024-01-09 |
تقييم | 5.00/5 مجموع تقييمات 11 |
المطور | Tantris |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter |
عنوان صفحة المساعدة | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Code Highlighter", "version": "1.0", "description": "Improve the appearance of code snippets in ChatGPT code snippets.", "permissions": [ "activeTab", "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "Images\/icon16.png", "48": "Images\/icon48.png", "128": "Images\/icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "16": "Images\/icon16.png", "48": "Images\/icon48.png", "128": "Images\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "styles-default.css", "styles-dark.css", "styles-light.css", "styles-monkai.css", "styles-github.css", "popup.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ] } |