ChatGPT-Pro

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

Vad är ChatGPT-Pro?

ChatGPT-Pro är en Chrome-tillägg utvecklad av https://foil.dev, och dess huvudfunktion är "A Chrome extension to display the token count for OpenAI chat messages.".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT-Pro-förlängningens CRX-fil

Ladda ner ChatGPT-Pro-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ChatGPT-Pro ChatGPT-Pro
ID kolkklpaoobmfblcifkmnbgoohklkejk
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-pro/kolkklpaoobmfblcifkmnbgoohklkejk
Beskrivning A Chrome extension to display the token count for OpenAI chat messages.
Filstorlek 625 KB
Antal Installationer 127
Aktuell Version 1.0.2
Senast Uppdaterad 2023-07-31
Publiceringsdatum 2023-05-03
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://foil.dev
E-post [email protected]
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}