MemoryGPT

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

Τι είναι το MemoryGPT;

Το MemoryGPT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Wynter Jones, και η κύρια λειτουργία του είναι "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης MemoryGPT

Λήψη αρχείων επέκτασης MemoryGPT σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
Επίσημο URL https://chromewebstore.google.com/detail/memorygpt/aljiibffliajmjonffmhpbhcbnbcmbhl
Περιγραφή A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!
Μέγεθος Αρχείου 823 KB
Αριθμός Εγκαταστάσεων 490
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-06-09
Ημερομηνία Δημοσίευσης 2023-06-09
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Wynter Jones
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.monetizedesign.com/privacy-policy.html
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}