Wistia Video Downloader

Wistia Video Downloader

Download all Wistia videos you see while browsing!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Download all Wistia videos you see while browsing!",
  "version": "1.4.2",
  "name": "Wistia Video Downloader",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "downloads",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "*.svg"
  ],
  "browser_action": {
    "default_popup": "./popup.html",
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png"
    }
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}