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.”。
擴展截圖
下載Databricks Power Tools擴展crx文件
下載Databricks Power Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | mpffpmajkdieodggkakklfkghdiafhpo |
官方網址 | 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" } |