TokenAware

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

Was ist TokenAware?

TokenAware ist eine Chrome-Erweiterung, die von Sahar entwickelt wurde, und ihr Hauptmerkmal ist "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".

Erweiterungsscreenshots

screenshot
screenshot

TokenAware-Erweiterungs-CRX-Datei herunterladen

Laden Sie TokenAware-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
Offizielle URL https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
Beschreibung Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Dateigröße 83.01 KB
Installationsanzahl 58
Aktuelle Version 1.0.7
Letztes Update 2021-01-20
Veröffentlichungsdatum 2020-11-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Sahar
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.saharmor.info
Unterstützte Sprachen 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"
    ]
}