ChatGPT-Pro

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

ChatGPT-Pro là gì?

ChatGPT-Pro là một tiện ích mở rộng Chrome được phát triển bởi https://foil.dev, và tính năng chính của nó là "A Chrome extension to display the token count for OpenAI chat messages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT-Pro

Tải xuống các tệp mở rộng ChatGPT-Pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Mô tả A Chrome extension to display the token count for OpenAI chat messages.
Kích Thước Tệp 625 KB
Số Lần Cài Đặt 127
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-07-31
Ngày Phát Hành 2023-05-03
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://foil.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}