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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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