BigView for BigQuery

Get a bigger view on the BigQuery console

Vad är BigView for BigQuery?

BigView for BigQuery är en Chrome-tillägg utvecklad av Christian Soujon, och dess huvudfunktion är "Get a bigger view on the BigQuery console".

Tilläggsskärmbilder

screenshot

Ladda ner BigView for BigQuery-förlängningens CRX-fil

Ladda ner BigView for BigQuery-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn BigView for BigQuery BigView for BigQuery
ID mlnfpghecigkjfogppmleacmcklapafh
Officiell webbadress https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh
Beskrivning Get a bigger view on the BigQuery console
Filstorlek 10.76 KB
Antal Installationer 58
Aktuell Version 1.3
Senast Uppdaterad 2020-04-14
Publiceringsdatum 2020-04-13
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Christian Soujon
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}