Examine source code of Vim Vix Remix

Inspect and view changes in Vim Vix Remix 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
{
  "manifest_version": 2,
  "name": "Vim Vix Remix",
  "description": "Vim Vix Remix is a Firefox add-on which allows you to navigate with the keyboard on the browser.",
  "version": "2.0.0",
  "icons": {
    "48": "resources/icon_48x48.png",
    "96": "resources/icon_96x96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "vim-vix-remix@test.com"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "build/content.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "background": {
    "scripts": [
      "build/background.js"
    ]
  },
  "permissions": [
    "history",
    "sessions",
    "storage",
    "tabs",
    "clipboardRead",
    "notifications",
    "bookmarks",
    "browserSettings"
  ],
  "web_accessible_resources": [
    "build/console.html",
    "build/console.js"
  ],
  "options_ui": {
    "page": "build/settings.html"
  },
  "browser_action": {
    "default_icon": {
      "32": "resources/enabled_32x32.png"
    },
    "default_title": "Vim Vix Remix"
  }
}