ChatGPT Code Highlighter

Improve the appearance of code snippets in ChatGPT code snippets.

ChatGPT Code Highlighterคืออะไร?

ChatGPT Code Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tantris และคุณลักษณะหลักของมันคือ "Improve the appearance of code snippets in ChatGPT code snippets."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Code Highlighter

ดาวน์โหลดไฟล์ส่วนขยาย 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 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\/*"
            ]
        }
    ]
}