ChatGPT-Pro

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

Co je ChatGPT-Pro?

ChatGPT-Pro je rozšíření Chrome vyvinuté https://foil.dev, a jeho hlavní funkcí je „A Chrome extension to display the token count for OpenAI chat messages.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ChatGPT-Pro

Stáhněte si soubory rozšíření ChatGPT-Pro ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Popis A Chrome extension to display the token count for OpenAI chat messages.
Velikost souboru 625 KB
Počet instalací 127
Aktuální Verze 1.0.2
Poslední Aktualizace 2023-07-31
Datum Vydání 2023-05-03
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://foil.dev
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
                ""
            ]
        }
    ]
}