DBSnippet

A Chrome extension to provide code snippets on Databricks

DBSnippetとは何ですか?

DBSnippetはharupyによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension to provide code snippets on Databricks」です。

拡張機能のスクリーンショット

screenshot

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                    

拡張機能の基本情報

名前 DBSnippet 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
Eメール [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"
    ]
}