MemoryGPT

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

What is MemoryGPT?

MemoryGPT is a Chrome extension developed by Wynter Jones, and its main feature is "A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!".

Extension Screenshots

screenshot

Download MemoryGPT Extension CRX File

Download MemoryGPT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name MemoryGPT MemoryGPT
ID aljiibffliajmjonffmhpbhcbnbcmbhl
Official URL 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!
File Size 823 KB
Installation Count 490
Current Version 1.0
Last Updated 2023-06-09
Publish Date 2023-06-09
Rating 5.00/5 Total 1 Ratings
Developer Wynter Jones
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.monetizedesign.com/privacy-policy.html
Supported Languages 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"
            ]
        }
    ]
}