TokenAware

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

Apa itu TokenAware?

TokenAware adalah ekstensi Chrome yang dikembangkan oleh Sahar, dan fitur utamanya adalah "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi TokenAware

Unduh file ekstensi TokenAware dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
URL Resmi https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
Deskripsi Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Ukuran File 83.01 KB
Jumlah Instalasi 58
Versi Saat Ini 1.0.7
Terakhir Diperbarui 2021-01-20
Tanggal Publikasi 2020-11-11
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Sahar
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.saharmor.info
Bahasa yang Didukung 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"
    ]
}