DBSnippet

DBSnippet

A Chrome extension to provide code snippets on Databricks

Merlin
Additional files are visible only to premium users

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"
  ]
}