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ファイルをダウンロード

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
Eメール [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\/*"
            ]
        }
    ]
}