ChatGPT-Pro

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

Wat is ChatGPT-Pro?

ChatGPT-Pro is een Chrome-extensie ontwikkeld door https://foil.dev, en de belangrijkste functie is "A Chrome extension to display the token count for OpenAI chat messages.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ChatGPT-Pro

Download ChatGPT-Pro-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
Officiële URL https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Beschrijving A Chrome extension to display the token count for OpenAI chat messages.
Bestandsgrootte 625 KB
Aantal Installaties 127
Huidige Versie 1.0.2
Laatst Bijgewerkt 2023-07-31
Publicatiedatum 2023-05-03
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar https://foil.dev
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}