ChatGPT Terminal Theme

Customize the look of the OpenAI ChatGPT.

What is ChatGPT Terminal Theme?

ChatGPT Terminal Theme is a Chrome extension developed by Sen Lin, and its main feature is "Customize the look of the OpenAI ChatGPT.".

Extension Screenshots

screenshot
screenshot
screenshot

Download ChatGPT Terminal Theme Extension CRX File

Download ChatGPT Terminal Theme extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        ** 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.                    

Extension Basic Information

Name ChatGPT Terminal Theme ChatGPT Terminal Theme
ID gklcfplkibblhbjhafebgmiaepliflmc
Official URL https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc
Description Customize the look of the OpenAI ChatGPT.
File Size 16.1 KB
Installation Count 40
Current Version 1.0
Last Updated 2023-08-23
Publish Date 2023-08-23
Rating 5.00/5 Total 1 Ratings
Developer Sen Lin
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}