ChatGPT Token Counter
Counts tokens in the ChatGPT active conversation on chat.openai.com
ما هو ChatGPT Token Counter؟
ChatGPT Token Counter هو إضافة Chrome تم تطويرها بواسطة https://amperly.com، والميزة الرئيسية لها هي "Counts tokens in the ChatGPT active conversation on chat.openai.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة ChatGPT Token Counter
قم بتنزيل ملفات الامتداد ChatGPT Token Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/ |
عنوان صفحة المساعدة | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |