FlashVim

FlashVim

Flashvim is a browser extension which provides keyboard shortcuts for navigation and control in the spirit of the Vim editor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "FlashVim",
  "version": "1.23.4",
  "manifest_version": 2,
  "description": "Vim for Google Chrome and Firefox.",
  "icons": {
    "48": "source/48.png"
  },
  "permissions": [
    "<all_urls>",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "source/48.png",
    "default_title": "FlashVim"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "css": [
        "source/styles.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{bd7cc3c1-fb09-4b6e-9ed8-c1be24b36cc6}"
    }
  }
}