Video Download

Video Download

Video Download - Download video from any website

Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "version": "3.2",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.png",
    "default_title": "Video Download"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "page": "background.html"
  },
  "icons": {
    "48": "icon48.png"
  },
  "manifest_version": 2,
  "incognito": "spanning",
  "content_security_policy": "script-src 'self'; object-src 'self'; child-src *",
  "permissions": [
    "tabs",
    "webRequest",
    "<all_urls>",
    "webNavigation",
    "downloads",
    "webRequestBlocking",
    "storage",
    "unlimitedStorage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}