ChatGPT Code Highlighter
Improve the appearance of code snippets in ChatGPT code snippets.
Co to jest ChatGPT Code Highlighter?
ChatGPT Code Highlighter to rozszerzenie Chrome opracowane przez Tantris, a jego główną funkcją jest „Improve the appearance of code snippets in ChatGPT code snippets.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT Code Highlighter
Pobierz pliki rozszerzeń ChatGPT Code Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT Code Highlighter |
ID | fideanlgimnffbhocnkbdpmfngiccaho |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-code-highlighter/fideanlgimnffbhocnkbdpmfngiccaho |
Opis | Improve the appearance of code snippets in ChatGPT code snippets. |
Rozmiar pliku | 35.78 KB |
Liczba instalacji | 58 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2024-02-12 |
Data Publikacji | 2024-01-09 |
Ocena | 5.00/5 Łącznie 11 Oceny |
Deweloper | Tantris |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter |
Adres URL Strony Pomocy | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter/issues |
Obsługiwane Języki | 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\/*" ] } ] } |