ChatGPT Default Model Selector

Change the default GPT model version of ChatGPT

Τι είναι το ChatGPT Default Model Selector;

Το ChatGPT Default Model Selector είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://nebularlabs.com, και η κύρια λειτουργία του είναι "Change the default GPT model version of ChatGPT".

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

screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Default Model Selector

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

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

                        A simple extension that allows you to specify the default model version for all new ChatGPT conversations. 

By default, ChatGPT uses the current stable model version for all new conversations, without giving you an option to change this default behaviour. This may not be desirable, especially when a new model version is released, forcing your to always remember to manually change the model version before beginning a conversation. With this extension, you can save your default model version preference, so that all new ChatGPT conversations automatically preselect this desired model version for you.                    

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

Όνομα ChatGPT Default Model Selector ChatGPT Default Model Selector
ID ccibigimpkglmjnohebpnddlikojfedf
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-default-model-sel/ccibigimpkglmjnohebpnddlikojfedf
Περιγραφή Change the default GPT model version of ChatGPT
Μέγεθος Αρχείου 41.46 KB
Αριθμός Εγκαταστάσεων 248
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2023-06-09
Ημερομηνία Δημοσίευσης 2023-04-18
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://nebularlabs.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/n1te1337/chrome-chatgpt-default-model-selector
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Default Model Selector",
    "version": "1.2.1",
    "description": "Change the default GPT model version of ChatGPT",
    "icons": {
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "src\/pages\/popup.html",
        "default_icon": {
            "128": "icon\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/change-version.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}