ChatGPT Terminal Theme

Customize the look of the OpenAI ChatGPT.

Vad är ChatGPT Terminal Theme?

ChatGPT Terminal Theme är en Chrome-tillägg utvecklad av Sen Lin, och dess huvudfunktion är "Customize the look of the OpenAI ChatGPT.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner ChatGPT Terminal Theme-förlängningens CRX-fil

Ladda ner ChatGPT Terminal Theme-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn ChatGPT Terminal Theme ChatGPT Terminal Theme
ID gklcfplkibblhbjhafebgmiaepliflmc
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc
Beskrivning Customize the look of the OpenAI ChatGPT.
Filstorlek 16.1 KB
Antal Installationer 40
Aktuell Version 1.0
Senast Uppdaterad 2023-08-23
Publiceringsdatum 2023-08-23
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Sen Lin
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}