DBSnippet
A Chrome extension to provide code snippets on Databricks
什么是DBSnippet?
DBSnippet是由harupy开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to provide code snippets on Databricks”。
扩展截图
下载DBSnippet扩展crx文件
下载DBSnippet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| 官方URL | https://chromewebstore.google.com/detail/dbsnippet/lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| 简介 | A Chrome extension to provide code snippets on Databricks |
| 文件大小 | 106 KB |
| 安装次数 | 50 |
| 当前版本 | 0.1.3 |
| 更新时间 | 2020-05-10 |
| 上架时间 | 2020-05-10 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | harupy |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/harupy/dbsnippet |
| 帮助页面URL | https://github.com/harupy/dbsnippet |
| 隐私政策页面URL | https://github.com/harupy |
| 支持的语言 | 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"
]
} | |