BigView for BigQuery

Get a bigger view on the BigQuery console

BigView for BigQuery là gì?

BigView for BigQuery là một tiện ích mở rộng Chrome được phát triển bởi Christian Soujon, và tính năng chính của nó là "Get a bigger view on the BigQuery console".

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

screenshot

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

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

                        Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.                    

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

Tên BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
URL Chính Thức https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Mô tả Get a bigger view on the BigQuery console
Kích Thước Tệp 10.76 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-04-14
Ngày Phát Hành 2020-04-13
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Christian Soujon
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BigView for BigQuery",
    "version": "1.3",
    "description": "Get a bigger view on the BigQuery console",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "storage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.cloud.google.com\/bigquery*"
            ],
            "js": [
                "content\/button.js",
                "content\/select.js",
                "content\/index.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}