ChatGPT Code Highlighter
Improve the appearance of code snippets in ChatGPT code snippets.
ChatGPT Code Highlighter là gì?
ChatGPT Code Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Tantris, và tính năng chính của nó là "Improve the appearance of code snippets in ChatGPT code snippets.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Code Highlighter
Tải xuống các tệp mở rộng ChatGPT Code Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ChatGPT Code Highlighter |
ID | fideanlgimnffbhocnkbdpmfngiccaho |
URL Chính Thức | https://chromewebstore.google.com/detail/chatgpt-code-highlighter/fideanlgimnffbhocnkbdpmfngiccaho |
Mô tả | Improve the appearance of code snippets in ChatGPT code snippets. |
Kích Thước Tệp | 35.78 KB |
Số Lần Cài Đặt | 58 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2024-02-12 |
Ngày Phát Hành | 2024-01-09 |
Đánh Giá | 5.00/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Tantris |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter |
URL Trang Trợ Giúp | https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |