BigQuery Cost Tracker

BigQuery Cost Tracker

Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BigQuery Cost Tracker",
  "version": "1.0.2",
  "description": "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://console.cloud.google.com/bigquery*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}