Private Video Downloader

Private Video Downloader

Download videos from web sites and avoid compromising entries in your browser history.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Private Video Downloader",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "icon.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "default_locale": "en",
  "version": "2.0.6",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "history",
    "cookies",
    "downloads",
    "tabs",
    "storage",
    "notifications",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "./content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.png",
    "default_title": "Private Video Downloader",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b9a672d6-0a2c-470e-9bed-1ca2e2a900c5}"
    }
  }
}