BigView for BigQuery
Get a bigger view on the BigQuery console
什么是BigView for BigQuery?
BigView for BigQuery是由Christian Soujon开发的Chrome扩展程序,该扩展的主要功能是“Get a bigger view on the BigQuery console”。
扩展截图
下载BigView for BigQuery扩展crx文件
下载BigView for BigQuery扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme.
扩展基本信息
名称 | BigView for BigQuery |
ID | mlnfpghecigkjfogppmleacmcklapafh |
官方URL | https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh |
简介 | Get a bigger view on the BigQuery console |
文件大小 | 10.76 KB |
安装次数 | 58 |
当前版本 | 1.3 |
更新时间 | 2020-04-14 |
上架时间 | 2020-04-13 |
评分 | 5.00/5 共2次评分 |
开发者 | Christian Soujon |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } } |