BigView for BigQuery
Get a bigger view on the BigQuery console
O que é BigView for BigQuery?
BigView for BigQuery é uma extensão do Chrome desenvolvida por Christian Soujon, e sua principal característica é "Get a bigger view on the BigQuery console".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão BigView for BigQuery
Baixe arquivos de extensão BigView for BigQuery no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.
Informações Básicas da Extensão
Nome | BigView for BigQuery |
ID | mlnfpghecigkjfogppmleacmcklapafh |
URL Oficial | https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh |
Descrição | Get a bigger view on the BigQuery console |
Tamanho do Arquivo | 10.76 KB |
Contagem de Instalações | 58 |
Versão Atual | 1.3 |
Última Atualização | 2020-04-14 |
Data de Publicação | 2020-04-13 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Christian Soujon |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } } |