MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Vad är MemoryGPT?
MemoryGPT är en Chrome-tillägg utvecklad av Wynter Jones, och dess huvudfunktion är "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".
Tilläggsskärmbilder
Ladda ner MemoryGPT-förlängningens CRX-fil
Ladda ner MemoryGPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
Officiell webbadress | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Beskrivning | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Filstorlek | 823 KB |
Antal Installationer | 490 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-06-09 |
Publiceringsdatum | 2023-06-09 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Wynter Jones |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.monetizedesign.com/privacy-policy.html |
Stödda Språk | 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" ] } ] } |