MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Wat is MemoryGPT?
MemoryGPT is een Chrome-extensie ontwikkeld door Wynter Jones, en de belangrijkste functie is "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".
Extensie Screenshots
Download het CRX-bestand van de extensie MemoryGPT
Download MemoryGPT-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
Officiële URL | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Beschrijving | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Bestandsgrootte | 823 KB |
Aantal Installaties | 490 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2023-06-09 |
Publicatiedatum | 2023-06-09 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Wynter Jones |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.monetizedesign.com/privacy-policy.html |
Ondersteunde Talen | 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" ] } ] } |