ChatGPT Token Counter
Counts tokens in the ChatGPT active conversation on chat.openai.com
Qu'est-ce que ChatGPT Token Counter ?
ChatGPT Token Counter est une extension Chrome développée par https://amperly.com, et sa fonction principale est "Counts tokens in the ChatGPT active conversation on chat.openai.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Token Counter
Téléchargez les fichiers d'extension ChatGPT Token Counter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | ChatGPT Token Counter |
ID | fjmnelakmikojjladjfdhdlfpanhcban |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban |
Description | Counts tokens in the ChatGPT active conversation on chat.openai.com |
Taille du Fichier | 20.66 KB |
Nombre d'Installations | 2,156 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2023-04-21 |
Date de Publication | 2023-04-20 |
Évaluation | 4.25/5 Total 8 Évaluations |
Développeur | https://amperly.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL de la Page d'Aide | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL de la Page de Politique de Confidentialité | https://amperly.com/wpautoterms/privacy-policy |
Langues Prises en Charge | 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" ] } ] } |