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
公式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
Eメール [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"
            ]
        }
    ]
}