Examine source code of Free Video Downloader

Inspect and view changes in Free Video Downloader 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": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "0.0.15",
  "browser_action": {
    "default_icon": "img/icon64.png",
    "default_popup": "popup/popup.html",
    "default_title": "video downloader"
  },
  "icons": {
    "16": "img/icon16.png",
    "24": "img/icon24.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "webRequest",
    "downloads",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end",
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "pageScript.js"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "object-src 'self' 'unsafe-eval'; script-src blob: 'self' 'unsafe-eval';",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}