CountGPT

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

什麼是CountGPT?

CountGPT是由https://redplanetrecords.co.uk開發的Chrome擴展程式,該擴展的主要功能是“Adds a counter to the ChatGPT site to keep track of how many messages have been sent”。

擴展截圖

screenshot

下載CountGPT擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 CountGPT CountGPT
ID ikedfcphlfopekpnneleglilcfnamjgl
官方網址 https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl
簡介 Adds a counter to the ChatGPT site to keep track of how many messages have been sent
檔案大小 25.93 KB
安裝次數 125
目前版本 0.2.0
更新時間 2023-05-26
上架時間 2023-05-02
評分 4.67/5 共 3 次評分
開發者 https://redplanetrecords.co.uk
電子郵箱 [email protected]
付費類型 free
支援的語言 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": [
                ""
            ]
        }
    ]
}