ChatGPT-Pro

A Chrome extension to display the token count for OpenAI chat messages.

什麼是ChatGPT-Pro?

ChatGPT-Pro是由https://foil.dev開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to display the token count for OpenAI chat messages.”。

擴展截圖

screenshot

下載ChatGPT-Pro擴展crx文件

下載ChatGPT-Pro擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ChatGPT-Pro is a convenient Chrome extension designed to enhance the user experience when interacting with OpenAI's ChatGPT platform. It provides a real-time display of token count, helping users avoid the hassle of submitting overly long messages that lead to errors and require page refreshing. With ChatGPT-Pro, users can ensure their messages are within the acceptable token limit before submission, eliminating the need for frustrating trial and error. This extension is a must-have for those who frequently use ChatGPT and want a smooth, efficient experience without the inconvenience of manually counting tokens or dealing with error messages due to excessive text length.                    

擴展基本資訊

名稱 ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
官方網址 https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
簡介 A Chrome extension to display the token count for OpenAI chat messages.
檔案大小 625 KB
安裝次數 127
目前版本 1.0.2
更新時間 2023-07-31
上架時間 2023-05-03
評分 5.00/5 共 2 次評分
開發者 https://foil.dev
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT-Pro",
    "version": "1.0.2",
    "description": "A Chrome extension to display the token count for OpenAI chat messages.",
    "permissions": [],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "icons": {
        "48": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "vocab.bpe"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "encoder.json"
            ],
            "matches": [
                ""
            ]
        }
    ]
}