ChatGPT-Pro

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

¿Qué es ChatGPT-Pro?

ChatGPT-Pro es una extensión de Chrome desarrollada por https://foil.dev, y su función principal es "A Chrome extension to display the token count for OpenAI chat messages.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ChatGPT-Pro

Descarga archivos de extensión ChatGPT-Pro 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

                        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.                    

Información Básica de la Extensión

Nombre ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
URL Oficial https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Descripción A Chrome extension to display the token count for OpenAI chat messages.
Tamaño del Archivo 625 KB
Cantidad de Instalaciones 127
Versión Actual 1.0.2
Última Actualización 2023-07-31
Fecha de Publicación 2023-05-03
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://foil.dev
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
                ""
            ]
        }
    ]
}