CountGPT

Adds a counter to the ChatGPT site to keep track of how many messages have been sent

CountGPT là gì?

CountGPT là một tiện ích mở rộng Chrome được phát triển bởi https://redplanetrecords.co.uk, và tính năng chính của nó là "Adds a counter to the ChatGPT site to keep track of how many messages have been sent".

Ả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 CountGPT

Tải xuống các tệp mở rộng CountGPT 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

                        This extension adds a very simple counter to the ChatGPT conversation page, allowing you to see how many messages have been sent. This is especially useful for dealing with the 25 message cap of GPT4. Counter auto increments when a new message is sent, users can select which GPT models they want to enable the counter on.                    

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

Tên CountGPT CountGPT
ID ikedfcphlfopekpnneleglilcfnamjgl
URL Chính Thức https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl
Mô tả Adds a counter to the ChatGPT site to keep track of how many messages have been sent
Kích Thước Tệp 25.93 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2023-05-26
Ngày Phát Hành 2023-05-02
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://redplanetrecords.co.uk
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CountGPT",
    "version": "0.2.0",
    "description": "Adds a counter to the ChatGPT site to keep track of how many messages have been sent",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/scripts\/popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}