Databricks Power Tools

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

Qu'est-ce que Databricks Power Tools ?

Databricks Power Tools est une extension Chrome développée par https://keestalkstech.com, et sa fonction principale est "Adds features to Databricks: table of contents and a stylesheet.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Databricks Power Tools

Téléchargez les fichiers d'extension Databricks Power Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Databricks Power Tools Databricks Power Tools
ID mpffpmajkdieodggkakklfkghdiafhpo
URL Officiel https://chromewebstore.google.com/detail/databricks-power-tools/mpffpmajkdieodggkakklfkghdiafhpo
Description Adds features to Databricks: table of contents and a stylesheet.
Taille du Fichier 15.79 KB
Nombre d'Installations 243
Version Actuelle 1.1.8
Dernière Mise à Jour 2021-04-16
Date de Publication 2020-06-29
Évaluation 4.67/5 Total 6 Évaluations
Développeur https://keestalkstech.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/KeesCBakker/databricks-power-tools
URL de la Page de Politique de Confidentialité https://keestalkstech.com/privacy-policy
Langues Prises en Charge 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"
}