ChatGPT-Pro

A Chrome extension to display the token count for OpenAI chat messages.

O que é ChatGPT-Pro?

ChatGPT-Pro é uma extensão do Chrome desenvolvida por https://foil.dev, e sua principal característica é "A Chrome extension to display the token count for OpenAI chat messages.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChatGPT-Pro

Baixe arquivos de extensão ChatGPT-Pro 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

                        ChatGPT-Pro is a convenient Chrome extension designed to enhance the user experience when interacting with OpenAI's ChatGPT platform. It provides a real-time display of token count, helping users avoid the hassle of submitting overly long messages that lead to errors and require page refreshing. With ChatGPT-Pro, users can ensure their messages are within the acceptable token limit before submission, eliminating the need for frustrating trial and error. This extension is a must-have for those who frequently use ChatGPT and want a smooth, efficient experience without the inconvenience of manually counting tokens or dealing with error messages due to excessive text length.                    

Informações Básicas da Extensão

Nome ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
URL Oficial https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Descrição A Chrome extension to display the token count for OpenAI chat messages.
Tamanho do Arquivo 625 KB
Contagem de Instalações 127
Versão Atual 1.0.2
Última Atualização 2023-07-31
Data de Publicação 2023-05-03
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://foil.dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT-Pro",
    "version": "1.0.2",
    "description": "A Chrome extension to display the token count for OpenAI chat messages.",
    "permissions": [],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "vocab.bpe"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "encoder.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}