MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Hvad er MemoryGPT?
MemoryGPT er en Chrome-udvidelse udviklet af Wynter Jones, og dens hovedfunktion er "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".
Udvidelsesskærmbilleder
Download MemoryGPT-udvidelses-CRX-fil
Download MemoryGPT-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
Officiel URL | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Beskrivelse | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Filstørrelse | 823 KB |
Antal Installationer | 490 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-06-09 |
Udgivelsesdato | 2023-06-09 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Wynter Jones |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://www.monetizedesign.com/privacy-policy.html |
Understøttede Sprog | 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" ] } ] } |