DBSnippet
A Chrome extension to provide code snippets on Databricks
What is DBSnippet?
DBSnippet is a Chrome extension developed by harupy, and its main feature is "A Chrome extension to provide code snippets on Databricks".
Extension Screenshots
Download DBSnippet Extension CRX File
Download DBSnippet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | DBSnippet |
ID | lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
Official URL | https://chromewebstore.google.com/detail/dbsnippet/lnnfckpmnjkjakgjiinhlnlkmeoodlhb |
Description | A Chrome extension to provide code snippets on Databricks |
File Size | 106 KB |
Installation Count | 50 |
Current Version | 0.1.3 |
Last Updated | 2020-05-10 |
Publish Date | 2020-05-10 |
Rating | 5.00/5 Total 1 Ratings |
Developer | harupy |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/harupy/dbsnippet |
Help Page URL | https://github.com/harupy/dbsnippet |
Privacy Policy Page URL | https://github.com/harupy |
Supported Languages | 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" ] } |