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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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