BigQuery Cost Tracker

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

BigQuery Cost Tracker là gì?

BigQuery Cost Tracker là một tiện ích mở rộng Chrome được phát triển bởi foward, và tính năng chính của nó là "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng BigQuery Cost Tracker 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

                        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.                    

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

Tên BigQuery Cost Tracker BigQuery Cost Tracker
ID kbdpebmmlgeadcdbdmdebipfhngoiefp
URL Chính Thức https://chromewebstore.google.com/detail/bigquery-cost-tracker/kbdpebmmlgeadcdbdmdebipfhngoiefp
Mô tả Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.
Kích Thước Tệp 450 KB
Số Lần Cài Đặt 509
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-05-02
Ngày Phát Hành 2023-04-26
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển foward
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://sites.google.com/view/bigquery-cost-tracker/home
URL Trang Trợ Giúp https://sites.google.com/view/bigquery-cost-tracker/documentation
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}