BigView for BigQuery
Get a bigger view on the BigQuery console
Was ist BigView for BigQuery?
BigView for BigQuery ist eine Chrome-Erweiterung, die von Christian Soujon entwickelt wurde, und ihr Hauptmerkmal ist "Get a bigger view on the BigQuery console".
Erweiterungsscreenshots
BigView for BigQuery-Erweiterungs-CRX-Datei herunterladen
Laden Sie BigView for BigQuery-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Turn the Google Cloud BigQuery Console into a more focused development tool by toggling the query editor fullscreen and changing the syntax theme. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mlnfpghecigkjfogppmleacmcklapafh |
| Offizielle URL | https://chromewebstore.google.com/detail/bigview-for-bigquery/mlnfpghecigkjfogppmleacmcklapafh |
| Beschreibung | Get a bigger view on the BigQuery console |
| Dateigröße | 10.76 KB |
| Installationsanzahl | 58 |
| Aktuelle Version | 1.3 |
| Letztes Update | 2020-04-14 |
| Veröffentlichungsdatum | 2020-04-13 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Christian Soujon |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
} | |