Databricks Power Tools

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

Databricks Power Tools란 무엇입니까?

Databricks Power Tools은(는) https://keestalkstech.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds features to Databricks: table of contents and a stylesheet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Databricks Power Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
}