ChatGPT Code Highlighter
Improve the appearance of code snippets in ChatGPT code snippets.
什麼是ChatGPT Code Highlighter?
ChatGPT Code Highlighter是由Tantris開發的Chrome擴展程式,該擴展的主要功能是“Improve the appearance of code snippets in ChatGPT code snippets.”。
擴展截圖
下載ChatGPT Code Highlighter擴展crx文件
下載ChatGPT Code Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 |
說明頁面URL | 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\/*" ] } ] } |