ChatGPT Terminal Theme

Customize the look of the OpenAI ChatGPT.

Τι είναι το ChatGPT Terminal Theme;

Το ChatGPT Terminal Theme είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sen Lin, και η κύρια λειτουργία του είναι "Customize the look of the OpenAI ChatGPT.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Terminal Theme

Λήψη αρχείων επέκτασης ChatGPT Terminal Theme σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Terminal Theme ChatGPT Terminal Theme
ID gklcfplkibblhbjhafebgmiaepliflmc
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-terminal-theme/gklcfplkibblhbjhafebgmiaepliflmc
Περιγραφή Customize the look of the OpenAI ChatGPT.
Μέγεθος Αρχείου 16.1 KB
Αριθμός Εγκαταστάσεων 40
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-08-23
Ημερομηνία Δημοσίευσης 2023-08-23
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Sen Lin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}