Examine source code of Indexed Navigation with Tab

Inspect and view changes in Indexed Navigation with Tab 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": "Keyboard Navigation",
  "version": "1.0",
  "description": "Navigate webpages using the keyboard.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{198f6bad-83fd-4eed-b97a-e85a50ea44b9}"
    }
  }
}