BigQuery Cost Estimator

BigQuery Cost Estimator

Estimates BigQuery spend based on processed data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BigQuery Cost Estimator",
  "version": "1.2",
  "description": "Estimates BigQuery spend based on processed data",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://console.cloud.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {}
}