ChatGPT Token Counter

Counts tokens in the ChatGPT active conversation on chat.openai.com

什么是ChatGPT Token Counter?

ChatGPT Token Counter是由https://amperly.com开发的Chrome扩展程序,该扩展的主要功能是“Counts tokens in the ChatGPT active conversation on chat.openai.com”。

扩展截图

screenshot
screenshot

下载ChatGPT Token Counter扩展crx文件

下载ChatGPT Token Counter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The ChatGPT Token Counter is a Chrome extension designed to help users keep track of their token count during long conversations with the ChatGPT language model on chat.openai.com.

ChatGPT has a context window of 4096 tokens, and when the conversation exceeds this limit, the model starts to "forget" what was discussed earlier. This extension provides a convenient box in the corner of the window that displays the number of tokens used in the 
element of the conversation. This helps users to monitor their token usage and ensure that their conversations do not exceed the context window, which is particularly important for coaching, idea generation, and working with longer articles where retaining the context is crucial. With this extension, users will know when context can be missing and will have more productive and meaningful conversations with ChatGPT. This extension is written 99% by ChatGPT. The logo icon is created 100% by MidJourney.

扩展基本信息

名称 ChatGPT Token Counter ChatGPT Token Counter
ID fjmnelakmikojjladjfdhdlfpanhcban
官方URL https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban
简介 Counts tokens in the ChatGPT active conversation on chat.openai.com
文件大小 20.66 KB
安装次数 2,156
当前版本 1.0
更新时间 2023-04-21
上架时间 2023-04-20
评分 4.25/5 共8次评分
开发者 https://amperly.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://amperly.com/chatgpt-token-counter-chrome-extension/
帮助页面URL https://amperly.com/chatgpt-token-counter-chrome-extension/
隐私政策页面URL https://amperly.com/wpautoterms/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Token Counter",
    "version": "1.0",
    "description": "Counts tokens in the ChatGPT active conversation on chat.openai.com",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "128.png"
        }
    },
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}