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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
            ]
        }
    ]
}