MemoryGPT
A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Co to jest MemoryGPT?
MemoryGPT to rozszerzenie Chrome opracowane przez Wynter Jones, a jego główną funkcją jest „A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MemoryGPT
Pobierz pliki rozszerzeń MemoryGPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | MemoryGPT |
ID | aljiibffliajmjonffmhpbhcbnbcmbhl |
Oficjalny URL | https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl |
Opis | A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more! |
Rozmiar pliku | 823 KB |
Liczba instalacji | 490 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-06-09 |
Data Publikacji | 2023-06-09 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Wynter Jones |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.monetizedesign.com/privacy-policy.html |
Obsługiwane Języki | 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" ] } ] } |