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"입니다.

확장 프로그램 스크린샷

screenshot

BigQuery Cost Estimator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 BigQuery Cost Estimator
ID mampjdchejcfcggmeokhgcaaldojomep
공식 URL 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": []
}