BigView for BigQuery

Get a bigger view on the BigQuery console

Wat is BigView for BigQuery?

BigView for BigQuery is een Chrome-extensie ontwikkeld door Christian Soujon, en de belangrijkste functie is "Get a bigger view on the BigQuery console".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BigView for BigQuery

Download BigView for BigQuery-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
Officiële URL https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Beschrijving Get a bigger view on the BigQuery console
Bestandsgrootte 10.76 KB
Aantal Installaties 58
Huidige Versie 1.3
Laatst Bijgewerkt 2020-04-14
Publicatiedatum 2020-04-13
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Christian Soujon
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
    }
}