Databricks Power Tools
Adds features to Databricks: table of contents and a stylesheet.
Что такое Databricks Power Tools?
Databricks Power Tools - это расширение Chrome, разработанное https://keestalkstech.com, и его основная функция - "Adds features to Databricks: table of contents and a stylesheet.".
Снимки экрана расширения
Скачать файл CRX расширения Databricks Power Tools
Скачайте файлы расширений Databricks Power Tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extend Databricks with a custom stylesheet and be the master of your own Databricks environment. The extension will add a Table of contents that allows you to easier navigate large notebooks. Works on both Databricks Cloud and Azure Databricks. The following features are supported: - [x] 1.1.8 No cutoff of the auto complete. - [x] 1.1.7 Better indentation of the Table of Contents. - [x] 1.1.6 The first header (h1-h9) of each cell is added to the Table of Contents. - [x] 1.1.5 Support for Databricks on Azure. - [x] 1.1.0 Scroll on hover of the Table of Contents. - [x] 1.1.0 Ability to disable Table of Contents. - [x] 1.0.0 Style sheet support. - [x] 1.0.0 Table of Contents support.
Основная информация о расширении
Название | Databricks Power Tools |
ID | mpffpmajkdieodggkakklfkghdiafhpo |
Официальный URL | https://chromewebstore.google.com/detail/databricks-power-tools/mpffpmajkdieodggkakklfkghdiafhpo |
Описание | Adds features to Databricks: table of contents and a stylesheet. |
Размер файла | 15.79 KB |
Количество установок | 243 |
Текущая Версия | 1.1.8 |
Последнее Обновление | 2021-04-16 |
Дата публикации | 2020-06-29 |
Рейтинг | 4.67/5 Всего 6 оценок |
Разработчик | https://keestalkstech.com |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/KeesCBakker/databricks-power-tools |
URL страницы политики конфиденциальности | https://keestalkstech.com/privacy-policy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Databricks Power Tools", "description": "Adds features to Databricks: table of contents and a stylesheet.", "version": "1.1.8", "icons": { "128": "resources\/icon_small.png", "512": "resources\/icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.cloud.databricks.com\/*", "https:\/\/*.azuredatabricks.net\/*" ], "js": [ "content\/utils.js", "content\/stylesheet.js", "content\/toc.js" ] } ], "permissions": [ "storage" ], "options_page": "options\/options.html" } |