DBSnippet
A Chrome extension to provide code snippets on Databricks
DBSnippet là gì?
DBSnippet là một tiện ích mở rộng Chrome được phát triển bởi harupy, và tính năng chính của nó là "A Chrome extension to provide code snippets on Databricks".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DBSnippet
Tải xuống các tệp mở rộng DBSnippet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
DBSnippet is an open source Chrome extension to enable code snippets on Databricks. # Features - Supports both AWS and Azure versions. - Has an option page where you can add custom snippets. # GitHub Repository https://github.com/harupy/dbsnippet
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DBSnippet |
ID | lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
URL Chính Thức | https://chromewebstore.google.com/detail/dbsnippet/lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
Mô tả | A Chrome extension to provide code snippets on Databricks |
Kích Thước Tệp | 106 KB |
Số Lần Cài Đặt | 50 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2020-05-10 |
Ngày Phát Hành | 2020-05-10 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | harupy |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/harupy/dbsnippet |
URL Trang Trợ Giúp | https://github.com/harupy/dbsnippet |
URL Trang Chính Sách Bảo Mật | https://github.com/harupy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DBSnippet", "version": "0.1.3", "manifest_version": 2, "description": "A Chrome extension to provide code snippets on Databricks", "icons": { "48": "img\/logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.databricks.com\/*", "https:\/\/*.azuredatabricks.net\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "options_page": "options\/index.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "web_accessible_resources": [ "main.js", "options\/index.js" ], "permissions": [ "storage" ] } |