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是由Wynter Jones開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension that uses GPT token counter to help you how many tokens are used in the current chat session and more!”。

擴展截圖

screenshot

下載MemoryGPT擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}