CountGPT
Adds a counter to the ChatGPT site to keep track of how many messages have been sent
CountGPTคืออะไร?
CountGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://redplanetrecords.co.uk และคุณลักษณะหลักของมันคือ "Adds a counter to the ChatGPT site to keep track of how many messages have been sent"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CountGPT
ดาวน์โหลดไฟล์ส่วนขยาย CountGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a very simple counter to the ChatGPT conversation page, allowing you to see how many messages have been sent. This is especially useful for dealing with the 25 message cap of GPT4. Counter auto increments when a new message is sent, users can select which GPT models they want to enable the counter on.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CountGPT |
ID | ikedfcphlfopekpnneleglilcfnamjgl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl |
คำอธิบาย | Adds a counter to the ChatGPT site to keep track of how many messages have been sent |
ขนาดไฟล์ | 25.93 KB |
จำนวนการติดตั้ง | 125 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2023-05-26 |
วันที่เผยแพร่ | 2023-05-02 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://redplanetrecords.co.uk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CountGPT", "version": "0.2.0", "description": "Adds a counter to the ChatGPT site to keep track of how many messages have been sent", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/scripts\/popup.js" ], "matches": [ " |