Examine source code of GitHub: Prevent search hijacking

Inspect and view changes in GitHub: Prevent search hijacking 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": "GitHub: Prevent search hijacking",
  "description": "GitHub overrides the slash key to focus its search box. This extension restores the default Firefox behavior to pop up the Find bar.",
  "version": "0.3resigned1",
  "author": "Yuri Khan",
  "icons": {
    "48": "search.svg"
  },
  "permissions": [
    "*://github.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e10fde76-d59d-438c-a800-4f044715bd6f}"
    }
  }
}