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
Eメール [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"
            ]
        }
    ]
}