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 |
公式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 |
Eメール | [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" ] } ] } |