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