Examine source code of Emacs-keybinding

Inspect and view changes in Emacs-keybinding 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": "Emacs-keybinding",
  "description": "An addon for using Firefox with Emacs keybinding",
  "version": "0.2.6",
  "homepage_url": "https://github.com/bwachter/emacs-keybinding",
  "author": "Wang Kai",
  "developer": {
    "name": "Bernd Wachter"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{e95dd474-674a-4768-9965-8360529685a5}"
    }
  },
  "permissions": [
    "activeTab",
    "find",
    "history",
    "search",
    "storage",
    "tabs",
    "topSites"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/emacs-19.png",
      "38": "icons/emacs-38.png"
    }
  },
  "icons": {
    "48": "icons/emacs-48.png",
    "96": "icons/emacs-96.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "keybindings.js"
      ]
    }
  ]
}