ChatGPT-Pro

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

Qu'est-ce que ChatGPT-Pro ?

ChatGPT-Pro est une extension Chrome développée par https://foil.dev, et sa fonction principale est "A Chrome extension to display the token count for OpenAI chat messages.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPT-Pro

Téléchargez les fichiers d'extension ChatGPT-Pro au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
URL Officiel https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Description A Chrome extension to display the token count for OpenAI chat messages.
Taille du Fichier 625 KB
Nombre d'Installations 127
Version Actuelle 1.0.2
Dernière Mise à Jour 2023-07-31
Date de Publication 2023-05-03
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://foil.dev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}