TokenAware

Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info

Qu'est-ce que TokenAware ?

TokenAware est une extension Chrome développée par Sahar, et sa fonction principale est "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension TokenAware

Téléchargez les fichiers d'extension TokenAware 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

                        OpenAI's playground is where every GPT-3 powered app starts. Token-based pricing was introduced yet it's hard to track and understand how much you're expected to pay at the early stages of building your app within OpenAI's Playground.

The code for this extension can be found here https://github.com/Saharhash/TokenAware                    

Informations de Base sur l'Extension

Nom TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
URL Officiel https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
Description Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Taille du Fichier 83.01 KB
Nombre d'Installations 58
Version Actuelle 1.0.7
Dernière Mise à Jour 2021-01-20
Date de Publication 2020-11-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur Sahar
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.saharmor.info
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TokenAware",
    "description": "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info",
    "version": "1.0.7",
    "browser_action": {
        "default_icon": "icon\/favicon.ico"
    },
    "icons": {
        "16": "icon\/favicon-16x16.png",
        "48": "icon\/favicon-32x32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.beta.openai.com\/*"
            ],
            "js": [
                "jquery-2.2.js",
                "consts.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.beta.openai.com\/*",
        "webNavigation"
    ]
}