Databricks Power Tools

Adds features to Databricks: table of contents and a stylesheet.

¿Qué es Databricks Power Tools?

Databricks Power Tools es una extensión de Chrome desarrollada por https://keestalkstech.com, y su función principal es "Adds features to Databricks: table of contents and a stylesheet.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Databricks Power Tools

Descarga archivos de extensión Databricks Power Tools en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Databricks Power Tools Databricks Power Tools
ID mpffpmajkdieodggkakklfkghdiafhpo
URL Oficial https://chromewebstore.google.com/detail/databricks-power-tools/mpffpmajkdieodggkakklfkghdiafhpo
Descripción Adds features to Databricks: table of contents and a stylesheet.
Tamaño del Archivo 15.79 KB
Cantidad de Instalaciones 243
Versión Actual 1.1.8
Última Actualización 2021-04-16
Fecha de Publicación 2020-06-29
Calificación 4.67/5 Total de 6 Calificaciones
Desarrollador https://keestalkstech.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/KeesCBakker/databricks-power-tools
URL de la Página de Política de Privacidad https://keestalkstech.com/privacy-policy
Idiomas Soportados 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"
}