Looker BigQuery

The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click

Vad är Looker BigQuery?

Looker BigQuery är en Chrome-tillägg utvecklad av https://looker.com, och dess huvudfunktion är "The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click".

Tilläggsskärmbilder

screenshot

Ladda ner Looker BigQuery-förlängningens CRX-fil

Ladda ner Looker 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

                                            

Grundläggande Information om Tillägg

Namn Looker BigQuery Looker BigQuery
ID pgomiedfebnjfmaianaejjgonpeamblh
Officiell webbadress https://chromewebstore.google.com/detail/looker-bigquery/pgomiedfebnjfmaianaejjgonpeamblh
Beskrivning The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click
Filstorlek 15.29 KB
Antal Installationer 217
Aktuell Version 0.1.1
Senast Uppdaterad 2017-06-15
Publiceringsdatum 2017-06-15
Betyg 2.50/5 Totalt 2 Betyg
Utvecklare https://looker.com
Betalningssätt free
Tilläggswebbplats https://looker.com/bigquery-extension
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Looker BigQuery",
    "version": "0.1.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bigquery.cloud.google.com\/*"
            ],
            "js": [
                "defaults.js",
                "looker_bigquery.js"
            ],
            "css": [
                "looker_bigquery.css"
            ]
        }
    ],
    "description": "The Looker BigQuery extension adds an icon to the BigQuery UI to let you explore a table from BigQuery in Looker with a single click",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "icon128.png"
    ]
}