MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Apa itu MemoryGPT?
MemoryGPT adalah ekstensi Chrome yang dikembangkan oleh Wynter Jones, dan fitur utamanya adalah "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi MemoryGPT
Unduh file ekstensi MemoryGPT dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
URL Resmi | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Deskripsi | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Ukuran File | 823 KB |
Jumlah Instalasi | 490 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2023-06-09 |
Tanggal Publikasi | 2023-06-09 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Wynter Jones |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://www.monetizedesign.com/privacy-policy.html |
Bahasa yang Didukung | 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" ] } ] } |