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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |