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 |
官方網址 | 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" ] } |