ChatGPT Code Highlighter

Improve the appearance of code snippets in ChatGPT code snippets.

Hvad er ChatGPT Code Highlighter?

ChatGPT Code Highlighter er en Chrome-udvidelse udviklet af Tantris, og dens hovedfunktion er "Improve the appearance of code snippets in ChatGPT code snippets.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download ChatGPT Code Highlighter-udvidelses-CRX-fil

Download ChatGPT Code Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn ChatGPT Code Highlighter ChatGPT Code Highlighter
ID fideanlgimnffbhocnkbdpmfngiccaho
Officiel URL https://chromewebstore.google.com/detail/chatgpt-code-highlighter/fideanlgimnffbhocnkbdpmfngiccaho
Beskrivelse Improve the appearance of code snippets in ChatGPT code snippets.
Filstørrelse 35.78 KB
Antal Installationer 58
Nuværende Version 1.0
Senest Opdateret 2024-02-12
Udgivelsesdato 2024-01-09
Bedømmelse 5.00/5 Samlet 11 Bedømmelser
Udvikler Tantris
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter
Hjælpeside-URL https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter/issues
Understøttede Sprog 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\/*"
            ]
        }
    ]
}