ChatGPT Token Counter
Counts tokens in the ChatGPT active conversation on chat.openai.com
Cos'è ChatGPT Token Counter?
ChatGPT Token Counter è un'estensione di Chrome sviluppata da https://amperly.com, e la sua funzione principale è "Counts tokens in the ChatGPT active conversation on chat.openai.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Token Counter
Scarica i file di estensione ChatGPT Token Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ChatGPT Token Counter |
ID | fjmnelakmikojjladjfdhdlfpanhcban |
URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban |
Descrizione | Counts tokens in the ChatGPT active conversation on chat.openai.com |
Dimensione del File | 20.66 KB |
Conteggio Installazioni | 2,156 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2023-04-21 |
Data di Pubblicazione | 2023-04-20 |
Valutazione | 4.25/5 Totale 8 Valutazioni |
Sviluppatore | https://amperly.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL della Pagina di Aiuto | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL della Pagina della Politica sulla Privacy | https://amperly.com/wpautoterms/privacy-policy |
Lingue Supportate | 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" ] } ] } |