Examine source code of Media download helper 2

Inspect and view changes in Media download helper 2 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self';  object-src 'self'",
  "name": "Media download helper",
  "description": "Easily download video, audio from any website. Please keep the app updated to get new features.",
  "version": "3.0.4",
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "64": "64.png",
    "128": "128.png"
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "webRequestBlocking",
    "webRequest",
    "downloads"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "function.js",
      "analytics.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "download.png",
    "default_title": "Media download helper",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{cacc1ea8-0d7f-459e-9ceb-2211952bbb99}"
    }
  }
}