ChatGPT Token Counter
Counts tokens in the ChatGPT active conversation on chat.openai.com
ChatGPT Token Counter란 무엇입니까?
ChatGPT Token Counter은(는) https://amperly.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Counts tokens in the ChatGPT active conversation on chat.openai.com"입니다.
확장 프로그램 스크린샷
ChatGPT Token Counter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The ChatGPT Token Counter is a Chrome extension designed to help users keep track of their token count during long conversations with the ChatGPT language model on chat.openai.com. ChatGPT has a context window of 4096 tokens, and when the conversation exceeds this limit, the model starts to "forget" what was discussed earlier. This extension provides a convenient box in the corner of the window that displays the number of tokens used in theelement of the conversation. This helps users to monitor their token usage and ensure that their conversations do not exceed the context window, which is particularly important for coaching, idea generation, and working with longer articles where retaining the context is crucial. With this extension, users will know when context can be missing and will have more productive and meaningful conversations with ChatGPT. This extension is written 99% by ChatGPT. The logo icon is created 100% by MidJourney.
확장 프로그램 기본 정보
이름 | ChatGPT Token Counter |
ID | fjmnelakmikojjladjfdhdlfpanhcban |
공식 URL | https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban |
설명 | Counts tokens in the ChatGPT active conversation on chat.openai.com |
파일 크기 | 20.66 KB |
설치 횟수 | 2,156 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-04-21 |
출시 날짜 | 2023-04-20 |
평점 | 4.25/5 총 8 개의 평점 |
개발자 | https://amperly.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
도움말 페이지 URL | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
개인정보 보호 정책 페이지 URL | https://amperly.com/wpautoterms/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Token Counter", "version": "1.0", "description": "Counts tokens in the ChatGPT active conversation on chat.openai.com", "action": { "default_popup": "popup.html", "default_icon": { "128": "128.png" } }, "icons": { "128": "128.png" }, "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "js": [ "contentScript.js" ] } ] } |