BigView for BigQuery
Get a bigger view on the BigQuery console
Co to jest BigView for BigQuery?
BigView for BigQuery to rozszerzenie Chrome opracowane przez Christian Soujon, a jego główną funkcją jest „Get a bigger view on the BigQuery console”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BigView for BigQuery
Pobierz pliki rozszerzeń BigView for 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
Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.
Podstawowe informacje o rozszerzeniu
Nazwa | BigView for BigQuery |
ID | mlnfpghecigkjfogppmleacmcklapafh |
Oficjalny URL | https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh |
Opis | Get a bigger view on the BigQuery console |
Rozmiar pliku | 10.76 KB |
Liczba instalacji | 58 |
Aktualna Wersja | 1.3 |
Ostatnia Aktualizacja | 2020-04-14 |
Data Publikacji | 2020-04-13 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Christian Soujon |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |