BigView for BigQuery
Get a bigger view on the BigQuery console
Cos'è BigView for BigQuery?
BigView for BigQuery è un'estensione di Chrome sviluppata da Christian Soujon, e la sua funzione principale è "Get a bigger view on the BigQuery console".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BigView for BigQuery
Scarica i file di estensione BigView for BigQuery in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.
Informazioni di Base sull'Estensione
Nome | BigView for BigQuery |
ID | mlnfpghecigkjfogppmleacmcklapafh |
URL Ufficiale | https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh |
Descrizione | Get a bigger view on the BigQuery console |
Dimensione del File | 10.76 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2020-04-14 |
Data di Pubblicazione | 2020-04-13 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Christian Soujon |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |