Databricks Power Tools

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

Was ist Databricks Power Tools?

Databricks Power Tools ist eine Chrome-Erweiterung, die von https://keestalkstech.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds features to Databricks: table of contents and a stylesheet.".

Erweiterungsscreenshots

screenshot
screenshot

Databricks Power Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Databricks Power Tools-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Databricks Power Tools Databricks Power Tools
ID mpffpmajkdieodggkakklfkghdiafhpo
Offizielle URL https://chromewebstore.google.com/detail/databricks-power-tools/mpffpmajkdieodggkakklfkghdiafhpo
Beschreibung Adds features to Databricks: table of contents and a stylesheet.
Dateigröße 15.79 KB
Installationsanzahl 243
Aktuelle Version 1.1.8
Letztes Update 2021-04-16
Veröffentlichungsdatum 2020-06-29
Bewertung 4.67/5 Insgesamt 6 Bewertungen
Entwickler https://keestalkstech.com
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/KeesCBakker/databricks-power-tools
URL der Datenschutzrichtlinien-Seite https://keestalkstech.com/privacy-policy
Unterstützte Sprachen 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"
}