ChatGPT Default Model Selector

Change the default GPT model version of ChatGPT

ChatGPT Default Model Selector là gì?

ChatGPT Default Model Selector là một tiện ích mở rộng Chrome được phát triển bởi https://nebularlabs.com, và tính năng chính của nó là "Change the default GPT model version of ChatGPT".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Default Model Selector

Tải xuống các tệp mở rộng ChatGPT Default Model Selector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Default Model Selector ChatGPT Default Model Selector
ID ccibigimpkglmjnohebpnddlikojfedf
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-default-model-sel/ccibigimpkglmjnohebpnddlikojfedf
Mô tả Change the default GPT model version of ChatGPT
Kích Thước Tệp 41.46 KB
Số Lần Cài Đặt 248
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2023-06-09
Ngày Phát Hành 2023-04-18
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://nebularlabs.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/n1te1337/chrome-chatgpt-default-model-selector
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}