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是由Shane O'Hanlon开发的Chrome扩展程序,该扩展的主要功能是“Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.”。

扩展截图

screenshot

下载ChatGPT-4 Message Limit Tracker扩展crx文件

下载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"
            ]
        }
    ]
}