BigQuery Cost Estimator

Estimates BigQuery spend based on processed data

BigQuery Cost Estimator là gì?

BigQuery Cost Estimator là một tiện ích mở rộng Chrome được phát triển bởi Vittorio Carmignani, và tính năng chính của nó là "Estimates BigQuery spend based on processed data".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BigQuery Cost Estimator

Tải xuống các tệp mở rộng BigQuery Cost Estimator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BigQuery Cost Estimator BigQuery Cost Estimator
ID mampjdchejcfcggmeokhgcaaldojomep
URL Chính Thức https://chromewebstore.google.com/detail/bigquery-cost-estimator/mampjdchejcfcggmeokhgcaaldojomep
Mô tả Estimates BigQuery spend based on processed data
Kích Thước Tệp 17.64 KB
Số Lần Cài Đặt 270
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-09-27
Ngày Phát Hành 2023-08-27
Nhà Phát Triển Vittorio Carmignani
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/carmignanivittorio/BigQuery-Cost-Estimator
URL Trang Chính Sách Bảo Mật https://github.com/carmignanivittorio/BigQuery-Cost-Estimator/blob/main/PrivacyPolicy.md
Ngôn Ngữ Được Hỗ Trợ 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": []
}