BigView for BigQuery

Get a bigger view on the BigQuery console

Co je BigView for BigQuery?

BigView for BigQuery je rozšíření Chrome vyvinuté Christian Soujon, a jeho hlavní funkcí je „Get a bigger view on the BigQuery console“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření BigView for BigQuery

Stáhněte si soubory rozšíření BigView for BigQuery ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
Oficiální URL https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Popis Get a bigger view on the BigQuery console
Velikost souboru 10.76 KB
Počet instalací 58
Aktuální Verze 1.3
Poslední Aktualizace 2020-04-14
Datum Vydání 2020-04-13
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Christian Soujon
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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
    }
}