ChatGPT Token Counter

Counts tokens in the ChatGPT active conversation on chat.openai.com

ChatGPT Token Counter क्या है?

ChatGPT Token Counter https://amperly.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Counts tokens in the ChatGPT active conversation on chat.openai.com"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Token Counter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The ChatGPT Token Counter is a Chrome extension designed to help users keep track of their token count during long conversations with the ChatGPT language model on chat.openai.com.

ChatGPT has a context window of 4096 tokens, and when the conversation exceeds this limit, the model starts to "forget" what was discussed earlier. This extension provides a convenient box in the corner of the window that displays the number of tokens used in the 
element of the conversation. This helps users to monitor their token usage and ensure that their conversations do not exceed the context window, which is particularly important for coaching, idea generation, and working with longer articles where retaining the context is crucial. With this extension, users will know when context can be missing and will have more productive and meaningful conversations with ChatGPT. This extension is written 99% by ChatGPT. The logo icon is created 100% by MidJourney.

एक्सटेंशन की मूल जानकारी

नाम ChatGPT Token Counter ChatGPT Token Counter
ID fjmnelakmikojjladjfdhdlfpanhcban
आधिकारिक URL https://chromewebstore.google.com/detail/chatgpt-token-counter/fjmnelakmikojjladjfdhdlfpanhcban
विवरण Counts tokens in the ChatGPT active conversation on chat.openai.com
फ़ाइल का आकार 20.66 KB
स्थापना संख्या 2,156
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-04-21
प्रकाशन तिथि 2023-04-20
रेटिंग 4.25/5 कुल 8 रेटिंग्स
डेवलपर https://amperly.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://amperly.com/chatgpt-token-counter-chrome-extension/
सहायता पृष्ठ URL https://amperly.com/chatgpt-token-counter-chrome-extension/
गोपनीयता नीति पृष्ठ URL https://amperly.com/wpautoterms/privacy-policy
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Token Counter",
    "version": "1.0",
    "description": "Counts tokens in the ChatGPT active conversation on chat.openai.com",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "128.png"
        }
    },
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}