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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

ChatGPT Code Highlighter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
            ]
        }
    ]
}