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.
What is ChatGPT-4 Message Limit Tracker?
ChatGPT-4 Message Limit Tracker is a Chrome extension developed by Shane O'Hanlon, and its main feature is "Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh.".
Extension Screenshots
Download ChatGPT-4 Message Limit Tracker Extension CRX File
Download ChatGPT-4 Message Limit Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ChatGPT-4 Message Limit Tracker |
ID | epehajplcipobcknalgcdneghbegkiai |
Official URL | https://chromewebstore.google.com/detail/chatgpt-4-message-limit-t/epehajplcipobcknalgcdneghbegkiai |
Description | Help keep track of the amount of messages you have left to send via ChatGPT-4 and how long until your messages refresh. |
File Size | 18.03 KB |
Installation Count | 1,170 |
Current Version | 1.4 |
Last Updated | 2023-11-23 |
Publish Date | 2023-06-21 |
Rating | 3.30/5 Total 10 Ratings |
Developer | Shane O'Hanlon |
[email protected] | |
Payment Type | free |
Extension Website | https://www.shaneohanlon.com |
Supported Languages | 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" ] } ] } |