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"
            ]
        }
    ]
}