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
Co to jest Looker BigQuery?
Looker BigQuery to rozszerzenie Chrome opracowane przez https://looker.com, a jego główną funkcją jest „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”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Looker BigQuery
Pobierz pliki rozszerzeń Looker BigQuery w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pgomiedfebnjfmaianaejjgonpeamblh |
| Oficjalny URL | https://chromewebstore.google.com/detail/looker-bigquery/pgomiedfebnjfmaianaejjgonpeamblh |
| Opis | 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 |
| Rozmiar pliku | 15.29 KB |
| Liczba instalacji | 217 |
| Aktualna Wersja | 0.1.1 |
| Ostatnia Aktualizacja | 2017-06-15 |
| Data Publikacji | 2017-06-15 |
| Ocena | 2.50/5 Łącznie 2 Oceny |
| Deweloper | https://looker.com |
| Typ Płatności | free |
| Strona Rozszerzenia | https://looker.com/bigquery-extension |
| Obsługiwane Języki | 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"
]
} | |