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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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 |
Ηλεκτρονικό ταχυδρομείο | [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" ] } ] } |