ChatGPT Terminal Theme

Customize the look of the OpenAI ChatGPT.

Apa itu ChatGPT Terminal Theme?

ChatGPT Terminal Theme adalah ekstensi Chrome yang dikembangkan oleh Sen Lin, dan fitur utamanya adalah "Customize the look of the OpenAI ChatGPT.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi ChatGPT Terminal Theme

Unduh file ekstensi ChatGPT Terminal Theme dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        ** Don't forget to set your ChatGPT to "dark" mode for the correct effect. **

Change your ChatGPT interface to enjoy the timeless feel of a classic terminal interface. You can also choose the Blue or Red themes.                    

Informasi Dasar Ekstensi

Nama ChatGPT Terminal Theme ChatGPT Terminal Theme
ID gklcfplkibblhbjhafebgmiaepliflmc
URL Resmi https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc
Deskripsi Customize the look of the OpenAI ChatGPT.
Ukuran File 16.1 KB
Jumlah Instalasi 40
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-08-23
Tanggal Publikasi 2023-08-23
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Sen Lin
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Terminal Theme",
    "version": "1.0",
    "description": "Customize the look of the OpenAI ChatGPT.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "styles_blue.css",
                "styles_red.css",
                "terminal.css"
            ],
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "gptThemeLogo.png",
            "48": "gptThemeLogo.png",
            "128": "gptThemeLogo.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "gptThemeLogo.png",
        "48": "gptThemeLogo.png",
        "128": "gptThemeLogo.png"
    }
}