MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
MemoryGPTคืออะไร?
MemoryGPT เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wynter Jones และคุณลักษณะหลักของมันคือ "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MemoryGPT
ดาวน์โหลดไฟล์ส่วนขยาย MemoryGPT ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Count the tokens in your ChatGPT conversations. Super helpful to always stay within the 4096 token window. Or if you go past that context window... you can toggle on or off the ability to show what was "forgotten" so you don't have to guess!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
คำอธิบาย | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
ขนาดไฟล์ | 823 KB |
จำนวนการติดตั้ง | 490 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-06-09 |
วันที่เผยแพร่ | 2023-06-09 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Wynter Jones |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.monetizedesign.com/privacy-policy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MemoryGPT", "description": "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!", "version": "1.0", "homepage_url": "https:\/\/wynter.ai", "action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "tokenizer.js", "content.js" ], "css": [ "styles.css" ] } ] } |