Examine source code of filterify

Inspect and view changes in filterify 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
{
  "author": "mira",
  "manifest_version": 2,
  "name": "filterify",
  "version": "1.0",
  "description": "A Firefox extension for filtering the twitch chat to only see messages from one person only at https://twitch.tv/popout/<username>/chat",
  "icons": {
    "48": "icons/mira.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/popout/*/chat"
      ],
      "js": [
        "filterify.js"
      ]
    }
  ]
}