CountGPT

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

Was ist CountGPT?

CountGPT ist eine Chrome-Erweiterung, die von https://redplanetrecords.co.uk entwickelt wurde, und ihr Hauptmerkmal ist "Adds a counter to the ChatGPT site to keep track of how many messages have been sent".

Erweiterungsscreenshots

screenshot

CountGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie CountGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CountGPT CountGPT
ID ikedfcphlfopekpnneleglilcfnamjgl
Offizielle URL https://chromewebstore.google.com/detail/countgpt/ikedfcphlfopekpnneleglilcfnamjgl
Beschreibung Adds a counter to the ChatGPT site to keep track of how many messages have been sent
Dateigröße 25.93 KB
Installationsanzahl 125
Aktuelle Version 0.2.0
Letztes Update 2023-05-26
Veröffentlichungsdatum 2023-05-02
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler https://redplanetrecords.co.uk
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}