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 là gì?
MemoryGPT là một tiện ích mở rộng Chrome được phát triển bởi Wynter Jones, và tính năng chính của nó là "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng MemoryGPT
Tải xuống các tệp mở rộng MemoryGPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
URL Chính Thức | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Mô tả | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Kích Thước Tệp | 823 KB |
Số Lần Cài Đặt | 490 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-06-09 |
Ngày Phát Hành | 2023-06-09 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Wynter Jones |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.monetizedesign.com/privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |