ChatGPT Default Model Selector

Change the default GPT model version of ChatGPT

Wat is ChatGPT Default Model Selector?

ChatGPT Default Model Selector is een Chrome-extensie ontwikkeld door https://nebularlabs.com, en de belangrijkste functie is "Change the default GPT model version of ChatGPT".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ChatGPT Default Model Selector

Download ChatGPT Default Model Selector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ChatGPT Default Model Selector ChatGPT Default Model Selector
ID ccibigimpkglmjnohebpnddlikojfedf
Officiële URL https://chromewebstore.google.com/detail/chatgpt-default-model-sel/ccibigimpkglmjnohebpnddlikojfedf
Beschrijving Change the default GPT model version of ChatGPT
Bestandsgrootte 41.46 KB
Aantal Installaties 248
Huidige Versie 1.2.1
Laatst Bijgewerkt 2023-06-09
Publicatiedatum 2023-04-18
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar https://nebularlabs.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/n1te1337/chrome-chatgpt-default-model-selector
Ondersteunde Talen 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"
    ]
}