dbvim icon indicating copy to clipboard operation
dbvim copied to clipboard

Could Not Load Manifest File

Open bkraft-phdata opened this issue 2 years ago • 0 comments

Thank you for building this extension. I am a heavy Vim user and miss the basic Vim functionality in the Databricks notebook.

I followed the installation instructions. When I selected the src directory, I encountered this error

Failed to load extension
File
~/tmp/dbvim/src
Error
Could not load javascript 'dist/contentScript.js' for content script.
Could not load manifest.

This is the manifest.json file

❯ cat manifest.json
{
  "name": "DBVim",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "Enable Vim on Databricks",
  "icons": {
    "48": "img/logo.png"
  },
  "content_scripts": [
    {
      "matches": ["https://*.databricks.com/*"],
      "js": ["dist/contentScript.js"],
      "css": ["css/style.css"],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": ["dist/main.js"]
}

I am running on Google Chrome Version 120.0.6099.234 (Official Build) (x86_64) on a Mac OS 14.2 (23C64). I appreciate any insight you have to offer.

bkraft-phdata avatar Jan 26 '24 17:01 bkraft-phdata