BigQuery Cost Estimator

Estimates BigQuery spend based on processed data

Cos'è BigQuery Cost Estimator?

BigQuery Cost Estimator è un'estensione di Chrome sviluppata da Vittorio Carmignani, e la sua funzione principale è "Estimates BigQuery spend based on processed data".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BigQuery Cost Estimator

Scarica i file di estensione BigQuery Cost Estimator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome BigQuery Cost Estimator BigQuery Cost Estimator
ID mampjdchejcfcggmeokhgcaaldojomep
URL Ufficiale https://chromewebstore.google.com/detail/bigquery-cost-estimator/mampjdchejcfcggmeokhgcaaldojomep
Descrizione Estimates BigQuery spend based on processed data
Dimensione del File 17.64 KB
Conteggio Installazioni 270
Versione Corrente 1.2
Ultimo Aggiornamento 2023-09-27
Data di Pubblicazione 2023-08-27
Sviluppatore Vittorio Carmignani
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/carmignanivittorio/BigQuery-Cost-Estimator
URL della Pagina della Politica sulla Privacy https://github.com/carmignanivittorio/BigQuery-Cost-Estimator/blob/main/PrivacyPolicy.md
Lingue Supportate 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": []
}