ChatGPT Code Highlighter

Improve the appearance of code snippets in ChatGPT code snippets.

O que é ChatGPT Code Highlighter?

ChatGPT Code Highlighter é uma extensão do Chrome desenvolvida por Tantris, e sua principal característica é "Improve the appearance of code snippets in ChatGPT code snippets.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ChatGPT Code Highlighter

Baixe arquivos de extensão ChatGPT Code Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome ChatGPT Code Highlighter ChatGPT Code Highlighter
ID fideanlgimnffbhocnkbdpmfngiccaho
URL Oficial https://chromewebstore.google.com/detail/chatgpt-code-highlighter/fideanlgimnffbhocnkbdpmfngiccaho
Descrição Improve the appearance of code snippets in ChatGPT code snippets.
Tamanho do Arquivo 35.78 KB
Contagem de Instalações 58
Versão Atual 1.0
Última Atualização 2024-02-12
Data de Publicação 2024-01-09
Classificação 5.00/5 Total de 11 Avaliações
Desenvolvedor Tantris
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter
URL da Página de Ajuda https://github.com/Tantris514/ChatGPT-Code-Snippets-Highlighter/issues
Idiomas Suportados 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\/*"
            ]
        }
    ]
}