BigView for BigQuery

Get a bigger view on the BigQuery console

Qu'est-ce que BigView for BigQuery ?

BigView for BigQuery est une extension Chrome développée par Christian Soujon, et sa fonction principale est "Get a bigger view on the BigQuery console".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension BigView for BigQuery

Téléchargez les fichiers d'extension BigView for BigQuery au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
URL Officiel https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Description Get a bigger view on the BigQuery console
Taille du Fichier 10.76 KB
Nombre d'Installations 58
Version Actuelle 1.3
Dernière Mise à Jour 2020-04-14
Date de Publication 2020-04-13
Évaluation 5.00/5 Total 2 Évaluations
Développeur Christian Soujon
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}