MemoryGPT

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

Cos'è MemoryGPT?

MemoryGPT è un'estensione di Chrome sviluppata da Wynter Jones, e la sua funzione principale è "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione MemoryGPT

Scarica i file di estensione MemoryGPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
URL Ufficiale https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Descrizione A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Dimensione del File 823 KB
Conteggio Installazioni 490
Versione Corrente 1.0
Ultimo Aggiornamento 2023-06-09
Data di Pubblicazione 2023-06-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Wynter Jones
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.monetizedesign.com/privacy-policy.html
Lingue Supportate 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"
            ]
        }
    ]
}