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.

O que é ChatGPT-4 Message Limit Tracker?

ChatGPT-4 Message Limit Tracker é uma extensão do Chrome desenvolvida por Shane O'Hanlon, e sua principal característica é "Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChatGPT-4 Message Limit Tracker

Baixe arquivos de extensão ChatGPT-4 Message Limit Tracker 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

                        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.                    

Informações Básicas da Extensão

Nome ChatGPT-4 Message Limit Tracker ChatGPT-4 Message Limit Tracker
ID epehajplcipobcknalgcdneghbegkiai
URL Oficial https://chromewebstore.google.com/detail/chatgpt-4-message-limit-t/epehajplcipobcknalgcdneghbegkiai
Descrição Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.
Tamanho do Arquivo 18.03 KB
Contagem de Instalações 1,170
Versão Atual 1.4
Última Atualização 2023-11-23
Data de Publicação 2023-06-21
Classificação 3.30/5 Total de 10 Avaliações
Desenvolvedor Shane O'Hanlon
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.shaneohanlon.com
Idiomas Suportados 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"
            ]
        }
    ]
}