ChatGPT Default Model Selector

Change the default GPT model version of ChatGPT

What is ChatGPT Default Model Selector?

ChatGPT Default Model Selector is a Chrome extension developed by https://nebularlabs.com, and its main feature is "Change the default GPT model version of ChatGPT".

Extension Screenshots

screenshot

Download ChatGPT Default Model Selector Extension CRX File

Download ChatGPT Default Model Selector 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

                        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.                    

Extension Basic Information

Name ChatGPT Default Model Selector ChatGPT Default Model Selector
ID ccibigimpkglmjnohebpnddlikojfedf
Official URL https://chromewebstore.google.com/detail/chatgpt-default-model-sel/ccibigimpkglmjnohebpnddlikojfedf
Description Change the default GPT model version of ChatGPT
File Size 41.46 KB
Installation Count 248
Current Version 1.2.1
Last Updated 2023-06-09
Publish Date 2023-04-18
Rating 3.67/5 Total 3 Ratings
Developer https://nebularlabs.com
Email [email protected]
Payment Type free
Extension Website https://github.com/n1te1337/chrome-chatgpt-default-model-selector
Supported Languages 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"
    ]
}