BigQuery Cost Tracker

Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.

¿Qué es BigQuery Cost Tracker?

BigQuery Cost Tracker es una extensión de Chrome desarrollada por foward, y su función principal es "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión BigQuery Cost Tracker

Descarga archivos de extensión BigQuery Cost Tracker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily, weekly, and monthly cost reports at a glance.
- This is designed to work with the new tabbed UI.
- Estimation and display is render on observation of changes of the HTML and it is replacing the phrase "when run" to the specific amount. 
- There is no track or record of your queries or any information is stored outside your chrome browser (If you need the code I am happy to provide that)
-  Storage of cost is based *only* when you click the button "RUN".
- If your query processes less than 1 TB, the estimate is $0 because BigQuery provides 1 TB of on-demand query processing free per month.


RELEASE NOTES
1.0.0 - First Release
1.0.2 - Fixed small issues regarding initial Chrome Storage access.                    

Información Básica de la Extensión

Nombre BigQuery Cost Tracker BigQuery Cost Tracker
ID kbdpebmmlgeadcdbdmdebipfhngoiefp
URL Oficial https://chromewebstore.google.com/detail/bigquery-cost-tracker/kbdpebmmlgeadcdbdmdebipfhngoiefp
Descripción Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.
Tamaño del Archivo 450 KB
Cantidad de Instalaciones 509
Versión Actual 1.0.2
Última Actualización 2023-05-02
Fecha de Publicación 2023-04-26
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador foward
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://sites.google.com/view/bigquery-cost-tracker/home
URL de la Página de Ayuda https://sites.google.com/view/bigquery-cost-tracker/documentation
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BigQuery Cost Tracker",
    "version": "1.0.2",
    "description": "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.cloud.google.com\/bigquery*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}