BigView for BigQuery

Get a bigger view on the BigQuery console

什麼是BigView for BigQuery?

BigView for BigQuery是由Christian Soujon開發的Chrome擴展程式,該擴展的主要功能是“Get a bigger view on the BigQuery console”。

擴展截圖

screenshot

下載BigView for BigQuery擴展crx文件

下載BigView for BigQuery擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
官方網址 https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
簡介 Get a bigger view on the BigQuery console
檔案大小 10.76 KB
安裝次數 58
目前版本 1.3
更新時間 2020-04-14
上架時間 2020-04-13
評分 5.00/5 共 2 次評分
開發者 Christian Soujon
電子郵箱 [email protected]
付費類型 free
支援的語言 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
    }
}