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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" ] } |