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 je MemoryGPT?

MemoryGPT je rozšíření Chrome vyvinuté Wynter Jones, a jeho hlavní funkcí je „A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření MemoryGPT

Stáhněte si soubory rozšíření MemoryGPT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
Oficiální URL https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Popis A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Velikost souboru 823 KB
Počet instalací 490
Aktuální Verze 1.0
Poslední Aktualizace 2023-06-09
Datum Vydání 2023-06-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Wynter Jones
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.monetizedesign.com/privacy-policy.html
Podporované Jazyky 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"
            ]
        }
    ]
}