ChatGPT Prompt Counter
Counts the number of prompts sent to ChatGPT within a 3-hour period.
ChatGPT Prompt Counterคืออะไร?
ChatGPT Prompt Counter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย acadian.eth และคุณลักษณะหลักของมันคือ "Counts the number of prompts sent to ChatGPT within a 3-hour period."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Prompt Counter
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT Prompt Counter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome extension provides a prompt counter and timer for OpenAI's ChatGPT-4 model. It's especially useful for users who need to track the number of prompts sent to the model and the remaining time for the current session. The current maximum limit for regular ChatGPT Plus users is 40 prompts per 3 hours. (**its suspect by the developer that the new limit may be silently 20 prompts per 3 hours...) The new Open AI Teams plan has 100 prompt/3 hour limit per user with a minimum of 2 users per team. Features 🚀 - Counts the number of prompts sent to the ChatGPT-4 model - Displays the remaining time for the current 3-hour session - Allows resetting the count and timer - Displays data in an easy-to-access popup How It Works 🤖 The extension listens for HTTP POST requests sent to OpenAI's ChatGPT backend API. Each prompt sent to the model is counted and the time is tracked. The data is updated every second and is displayed in a popup that can be accessed by clicking the extension icon in the Chrome toolbar. The estimated time remaining is a rolling estimate made to match Open AIs token limits. Privacy 🔒 This extension does not collect, store, or transmit any personal data or browsing activity. It solely functions to count prompts and track session time for you only. Rest assured, your prompts remains completely private. -- Jan 27th update *OpenAI rolls out Team Plans with prompt limit of 100 per 3 hours per use -- Nov 18th update *OpenAI changes prompt limit to 40 per 3 hours*
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT Prompt Counter |
ID | djmjoepmfiooddjlmnagnnanhbjpdjkp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-prompt-counter/djmjoepmfiooddjlmnagnnanhbjpdjkp |
คำอธิบาย | Counts the number of prompts sent to ChatGPT within a 3-hour period. |
ขนาดไฟล์ | 41.63 KB |
จำนวนการติดตั้ง | 792 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2024-01-29 |
วันที่เผยแพร่ | 2023-08-10 |
คะแนน | 3.25/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | acadian.eth |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Prompt Counter", "version": "1.0", "description": "Counts the number of prompts sent to ChatGPT within a 3-hour period.", "permissions": [ "webRequest", "storage" ], "icons": { "16": "openai_icon.png", "48": "openai_icon.png", "128": "openai_icon.png" }, "host_permissions": [ "*:\/\/chat.openai.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" } } |