Examine source code of Slash Focus

Inspect and view changes in Slash Focus 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": "SlashFocus",
  "version": "0.0.3",
  "description": "Focuses website seachbars on slash. This only supports jisho and twitch for now, but I'm looking to expand support to more websites.",
  "icons": {
    "48": "ico.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.jisho.org/*",
        "*://*.twitch.tv/*"
      ],
      "js": [
        "run.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e674d9f2-f95a-4ade-9149-563f106f8c8c}",
      "strict_min_version": "100.0"
    }
  }
}