Examine source code of YouTube Video Duration Filter

Inspect and view changes in YouTube Video Duration Filter 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": "YouTube Video Duration Filter",
  "version": "1.0",
  "description": "A Firefox extension to filter YouTube videos by duration.",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1b0c9d25-d427-4193-b894-3b63b1825a00}"
    }
  }
}