Databricks Power Tools

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

Apa itu Databricks Power Tools?

Databricks Power Tools adalah ekstensi Chrome yang dikembangkan oleh https://keestalkstech.com, dan fitur utamanya adalah "Adds features to Databricks: table of contents and a stylesheet.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Databricks Power Tools

Unduh file ekstensi Databricks Power Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Databricks Power Tools Databricks Power Tools
ID mpffpmajkdieodggkakklfkghdiafhpo
URL Resmi https://chromewebstore.google.com/detail/databricks-power-tools/mpffpmajkdieodggkakklfkghdiafhpo
Deskripsi Adds features to Databricks: table of contents and a stylesheet.
Ukuran File 15.79 KB
Jumlah Instalasi 243
Versi Saat Ini 1.1.8
Terakhir Diperbarui 2021-04-16
Tanggal Publikasi 2020-06-29
Penilaian 4.67/5 Total 6 Penilaian
Pengembang https://keestalkstech.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/KeesCBakker/databricks-power-tools
URL Halaman Kebijakan Privasi https://keestalkstech.com/privacy-policy
Bahasa yang Didukung 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"
}