BigQuery Cost Tracker

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

Was ist BigQuery Cost Tracker?

BigQuery Cost Tracker ist eine Chrome-Erweiterung, die von foward entwickelt wurde, und ihr Hauptmerkmal ist "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

BigQuery Cost Tracker-Erweiterungs-CRX-Datei herunterladen

Laden Sie BigQuery Cost Tracker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name BigQuery Cost Tracker BigQuery Cost Tracker
ID kbdpebmmlgeadcdbdmdebipfhngoiefp
Offizielle URL https://chromewebstore.google.com/detail/bigquery-cost-tracker/kbdpebmmlgeadcdbdmdebipfhngoiefp
Beschreibung Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.
Dateigröße 450 KB
Installationsanzahl 509
Aktuelle Version 1.0.2
Letztes Update 2023-05-02
Veröffentlichungsdatum 2023-04-26
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler foward
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://sites.google.com/view/bigquery-cost-tracker/home
Hilfeseite URL https://sites.google.com/view/bigquery-cost-tracker/documentation
Unterstützte Sprachen 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"
    }
}