ChatGPT-Pro

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

Was ist ChatGPT-Pro?

ChatGPT-Pro ist eine Chrome-Erweiterung, die von https://foil.dev entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to display the token count for OpenAI chat messages.".

Erweiterungsscreenshots

screenshot

ChatGPT-Pro-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT-Pro-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Beschreibung A Chrome extension to display the token count for OpenAI chat messages.
Dateigröße 625 KB
Installationsanzahl 127
Aktuelle Version 1.0.2
Letztes Update 2023-07-31
Veröffentlichungsdatum 2023-05-03
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://foil.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}