Examine source code of FlashVim

Inspect and view changes in FlashVim source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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}"
    }
  }
}