TokenAware

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

TokenAwareとは何ですか?

TokenAwareはSaharによって開発されたChromeの拡張機能で、その主な機能は「Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info」です。

拡張機能のスクリーンショット

screenshot
screenshot

TokenAware拡張機能のCRXファイルをダウンロード

TokenAware拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
公式URL https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
説明 Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
ファイルサイズ 83.01 KB
インストール数 58
現在のバージョン 1.0.7
最終更新日 2021-01-20
公開日 2020-11-11
評価 5.00/5 合計 2 レビュー
開発者 Sahar
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://www.saharmor.info
対応言語 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"
    ]
}