ChatGPT Default Model Selector
Change the default GPT model version of ChatGPT
什么是ChatGPT Default Model Selector?
ChatGPT Default Model Selector是由https://nebularlabs.com开发的Chrome扩展程序,该扩展的主要功能是“Change the default GPT model version of ChatGPT”。
扩展截图
下载ChatGPT Default Model Selector扩展crx文件
下载ChatGPT Default Model Selector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" ] } |