DBSnippet
A Chrome extension to provide code snippets on Databricks
Was ist DBSnippet?
DBSnippet ist eine Chrome-Erweiterung, die von harupy entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to provide code snippets on Databricks".
Erweiterungsscreenshots
DBSnippet-Erweiterungs-CRX-Datei herunterladen
Laden Sie DBSnippet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| Offizielle URL | https://chromewebstore.google.com/detail/dbsnippet/lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
| Beschreibung | A Chrome extension to provide code snippets on Databricks |
| Dateigröße | 106 KB |
| Installationsanzahl | 50 |
| Aktuelle Version | 0.1.3 |
| Letztes Update | 2020-05-10 |
| Veröffentlichungsdatum | 2020-05-10 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | harupy |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/harupy/dbsnippet |
| Hilfeseite URL | https://github.com/harupy/dbsnippet |
| URL der Datenschutzrichtlinien-Seite | https://github.com/harupy |
| Unterstützte Sprachen | 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"
]
} | |