ChatGPT-Pro

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

Что такое ChatGPT-Pro?

ChatGPT-Pro - это расширение Chrome, разработанное https://foil.dev, и его основная функция - "A Chrome extension to display the token count for OpenAI chat messages.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ChatGPT-Pro

Скачайте файлы расширений ChatGPT-Pro в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
Официальный URL https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Описание A Chrome extension to display the token count for OpenAI chat messages.
Размер файла 625 KB
Количество установок 127
Текущая Версия 1.0.2
Последнее Обновление 2023-07-31
Дата публикации 2023-05-03
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://foil.dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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": [
                ""
            ]
        }
    ]
}