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란 무엇입니까?

BigQuery Cost Tracker은(는) foward에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 BigQuery Cost Tracker BigQuery Cost Tracker
ID kbdpebmmlgeadcdbdmdebipfhngoiefp
공식 URL https://chromewebstore.google.com/detail/bigquery-cost-tracker/kbdpebmmlgeadcdbdmdebipfhngoiefp
설명 Keep track of your BigQuery expenses in real-time with this easy-to-use Chrome extension. Get daily,monthly cost reports.
파일 크기 450 KB
설치 횟수 509
현재 버전 1.0.2
최근 업데이트 2023-05-02
출시 날짜 2023-04-26
평점 4.67/5 총 3 개의 평점
개발자 foward
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://sites.google.com/view/bigquery-cost-tracker/home
도움말 페이지 URL https://sites.google.com/view/bigquery-cost-tracker/documentation
지원되는 언어 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"
    }
}