ChatGPT Default Model Selector

Change the default GPT model version of ChatGPT

ChatGPT Default Model Selector क्या है?

ChatGPT Default Model Selector https://nebularlabs.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change the default GPT model version of ChatGPT"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Default Model Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}