ChatGPT Token Counter

Counts tokens in the ChatGPT active conversation on chat.openai.com

O que é ChatGPT Token Counter?

ChatGPT Token Counter é uma extensão do Chrome desenvolvida por https://amperly.com, e sua principal característica é "Counts tokens in the ChatGPT active conversation on chat.openai.com".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão ChatGPT Token Counter

Baixe arquivos de extensão ChatGPT Token Counter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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 the 
element 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.

Informações Básicas da Extensão

Nome ChatGPT Token Counter ChatGPT Token Counter
ID fjmnelakmikojjladjfdhdlfpanhcban
URL Oficial https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban
Descrição Counts tokens in the ChatGPT active conversation on chat.openai.com
Tamanho do Arquivo 20.66 KB
Contagem de Instalações 2,156
Versão Atual 1.0
Última Atualização 2023-04-21
Data de Publicação 2023-04-20
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor https://amperly.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://amperly.com/chatgpt-token-counter-chrome-extension/
URL da Página de Ajuda https://amperly.com/chatgpt-token-counter-chrome-extension/
URL da Página de Política de Privacidade https://amperly.com/wpautoterms/privacy-policy
Idiomas Suportados 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"
            ]
        }
    ]
}