ChatGPT-4 Message Limit Tracker

Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.

Что такое ChatGPT-4 Message Limit Tracker?

ChatGPT-4 Message Limit Tracker - это расширение Chrome, разработанное Shane O'Hanlon, и его основная функция - "Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.".

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

screenshot

Скачать файл CRX расширения ChatGPT-4 Message Limit Tracker

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

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

                        Using ChatGPT-4 has a limited number of messages in a certain time window. This extension will add a helpful message showing you the messages you have remaining, and the time until the window resets. For now, it assumes the window is static, not rolling. At the time of latest update publishing, the limit is 40 messages in a 3 hour window. When you send the first message, the window will begin, and you'll see how many messages remain and how much time remains until the window is reset. If these limits are changed, the message should update dynamically.                    

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

Название ChatGPT-4 Message Limit Tracker ChatGPT-4 Message Limit Tracker
ID epehajplcipobcknalgcdneghbegkiai
Официальный URL https://chromewebstore.google.com/detail/chatgpt-4-message-limit-t/epehajplcipobcknalgcdneghbegkiai
Описание Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.
Размер файла 18.03 KB
Количество установок 1,170
Текущая Версия 1.4
Последнее Обновление 2023-11-23
Дата публикации 2023-06-21
Рейтинг 3.30/5 Всего 10 оценок
Разработчик Shane O'Hanlon
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.shaneohanlon.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT-4 Message Limit Tracker",
    "description": "Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.",
    "icons": {
        "16": "icons\/icon16.jpeg",
        "32": "icons\/icon32.jpeg",
        "48": "icons\/icon48.jpeg",
        "128": "icons\/icon128.jpeg"
    },
    "author": {
        "email": "[email protected]"
    },
    "version": "1.4",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}