TokenAware

TokenAware

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

Merlin
Additional files are visible only to premium users

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"
  ]
}