ChatGPT Token Counter
Counts tokens in the ChatGPT active conversation on chat.openai.com
¿Qué es ChatGPT Token Counter?
ChatGPT Token Counter es una extensión de Chrome desarrollada por https://amperly.com, y su función principal es "Counts tokens in the ChatGPT active conversation on chat.openai.com".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT Token Counter
Descarga archivos de extensión ChatGPT Token Counter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ChatGPT Token Counter |
ID | fjmnelakmikojjladjfdhdlfpanhcban |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban |
Descripción | Counts tokens in the ChatGPT active conversation on chat.openai.com |
Tamaño del Archivo | 20.66 KB |
Cantidad de Instalaciones | 2,156 |
Versión Actual | 1.0 |
Última Actualización | 2023-04-21 |
Fecha de Publicación | 2023-04-20 |
Calificación | 4.25/5 Total de 8 Calificaciones |
Desarrollador | https://amperly.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL de la Página de Ayuda | https://amperly.com/chatgpt-token-counter-chrome-extension/ |
URL de la Página de Política de Privacidad | https://amperly.com/wpautoterms/privacy-policy |
Idiomas Soportados | 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" ] } ] } |