BigView for BigQuery

Get a bigger view on the BigQuery console

What is BigView for BigQuery?

BigView for BigQuery is a Chrome extension developed by Christian Soujon, and its main feature is "Get a bigger view on the BigQuery console".

Extension Screenshots

screenshot

Download BigView for BigQuery Extension CRX File

Download BigView for BigQuery extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
Official URL https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Description Get a bigger view on the BigQuery console
File Size 10.76 KB
Installation Count 58
Current Version 1.3
Last Updated 2020-04-14
Publish Date 2020-04-13
Rating 5.00/5 Total 2 Ratings
Developer Christian Soujon
Email [email protected]
Payment Type free
Supported Languages 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
    }
}