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
电子邮箱 [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"
    ]
}