BigQuery Cost Estimator
Estimates BigQuery spend based on processed data
什麼是BigQuery Cost Estimator?
BigQuery Cost Estimator是由Vittorio Carmignani開發的Chrome擴展程式,該擴展的主要功能是“Estimates BigQuery spend based on processed data”。
擴展截圖
下載BigQuery Cost Estimator擴展crx文件
下載BigQuery Cost Estimator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Effortlessly keep track of your Google BigQuery spending right from the console! The BigQuery Cost Estimator extension seamlessly integrates into the Google BigQuery Console and provides real-time cost estimates based on the amount of data processed by your queries. Features: 1. Instant Estimates: No need for manual calculations. As soon as you craft a query, get an immediate cost projection. 2. Accurate Pricing: Estimates are based on Google's standard BigQuery pricing, ensuring accuracy in the costs displayed. 3. Intuitive Integration: Works directly within the Google BigQuery Console. No separate app or dashboard. Usage: Just activate the extension and navigate to the Google BigQuery Console. When creating or analyzing a query, look for the "Estimated Cost" notation next to the data processed details. Optimize your BigQuery usage, avoid unexpected bills, and ensure your projects stay within budget with the BigQuery Cost Estimator. Calculation: the calculation uses the 6.25$ per TB indicated in the bigquery on-demand pricing https://cloud.google.com/bigquery/pricing#on_demand_pricing. Code: You can find the code in github here: https://github.com/carmignanivittorio/BigQuery-Cost-Estimator/tree/main Privacy Policy: https://github.com/carmignanivittorio/BigQuery-Cost-Estimator/blob/main/PrivacyPolicy.md
擴展基本資訊
名稱 | BigQuery Cost Estimator |
ID | mampjdchejcfcggmeokhgcaaldojomep |
官方網址 | https://chromewebstore.google.com/detail/bigquery-cost-estimator/mampjdchejcfcggmeokhgcaaldojomep |
簡介 | Estimates BigQuery spend based on processed data |
檔案大小 | 17.64 KB |
安裝次數 | 270 |
目前版本 | 1.2 |
更新時間 | 2023-09-27 |
上架時間 | 2023-08-27 |
開發者 | Vittorio Carmignani |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/carmignanivittorio/BigQuery-Cost-Estimator |
隱私政策頁面URL | https://github.com/carmignanivittorio/BigQuery-Cost-Estimator/blob/main/PrivacyPolicy.md |
支援的語言 | en |
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": [] } |