Video Download

A simple download video from website
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": "Video Download",
  "version": "0.8.1",
  "description": "A simple download video from website",
  "homepage_url": "https://github.com/vanbujhm/WebExtension-video-download",
  "icons": {
    "48": "icons/video-download.png",
    "96": "icons/video-download@2x.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "downloads"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/video-download-icon-16.png",
      "32": "icons/video-download-icon-32.png"
    },
    "default_title": "Video Download"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}