MemoryGPT

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

Qu'est-ce que MemoryGPT ?

MemoryGPT est une extension Chrome développée par Wynter Jones, et sa fonction principale est "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MemoryGPT

Téléchargez les fichiers d'extension MemoryGPT au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
URL Officiel https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Description A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Taille du Fichier 823 KB
Nombre d'Installations 490
Version Actuelle 1.0
Dernière Mise à Jour 2023-06-09
Date de Publication 2023-06-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur Wynter Jones
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.monetizedesign.com/privacy-policy.html
Langues Prises en Charge 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"
            ]
        }
    ]
}