Examine source code of Single Key Browsing

Inspect and view changes in Single Key Browsing 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Single Key Browsing",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "A few single key shortcuts for common browsing actions",
  "icons": {
    "48": "icons/48.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icons/32.png",
    "default_title": "Enable/disable key shortcuts"
  },
  "content_scripts": [
    {
      "js": [
        "page.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}