BigView for BigQuery
Get a bigger view on the BigQuery console
Что такое BigView for BigQuery?
BigView for BigQuery - это расширение Chrome, разработанное Christian Soujon, и его основная функция - "Get a bigger view on the BigQuery console".
Снимки экрана расширения
Скачать файл CRX расширения BigView for BigQuery
Скачайте файлы расширений 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 |
| Электронная почта | [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
}
} | |