MemoryGPT

A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!

Was ist MemoryGPT?

MemoryGPT ist eine Chrome-Erweiterung, die von Wynter Jones entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Erweiterungsscreenshots

screenshot

MemoryGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie MemoryGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
Offizielle URL https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Beschreibung A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Dateigröße 823 KB
Installationsanzahl 490
Aktuelle Version 1.0
Letztes Update 2023-06-09
Veröffentlichungsdatum 2023-06-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Wynter Jones
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.monetizedesign.com/privacy-policy.html
Unterstützte Sprachen 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"
            ]
        }
    ]
}