ChatGPT Code Highlighter
Improve the appearance of code snippets in ChatGPT code snippets.
ChatGPT Code Highlighter क्या है?
ChatGPT Code Highlighter Tantris द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improve the appearance of code snippets in ChatGPT code snippets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Code Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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\/*" ] } ] } |