DBSnippet
A Chrome extension to provide code snippets on Databricks
Wat is DBSnippet?
DBSnippet is een Chrome-extensie ontwikkeld door harupy, en de belangrijkste functie is "A Chrome extension to provide code snippets on Databricks".
Extensie Screenshots
Download het CRX-bestand van de extensie DBSnippet
Download DBSnippet-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| Officiële URL | https://chromewebstore.google.com/detail/dbsnippet/lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| Beschrijving | A Chrome extension to provide code snippets on Databricks |
| Bestandsgrootte | 106 KB |
| Aantal Installaties | 50 |
| Huidige Versie | 0.1.3 |
| Laatst Bijgewerkt | 2020-05-10 |
| Publicatiedatum | 2020-05-10 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | harupy |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/harupy/dbsnippet |
| Help Pagina-URL | https://github.com/harupy/dbsnippet |
| URL van de Privacybeleid Pagina | https://github.com/harupy |
| Ondersteunde Talen | 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"
]
} | |