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文件
下載ChatGPT Token Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } ] } |