Save Video As

Save Video As

Save Video As is a video downloader: You can save any online video as file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "version": "1.8",
  "content_scripts": [
    {
      "js": [
        "find_video_urls.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.youtube.com/*"
      ],
      "all_frames": true
    }
  ],
  "default_locale": "en",
  "permissions": [
    "downloads",
    "tabs",
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "page": "process.html"
  },
  "browser_action": {
    "default_icon": "icons/48.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_ext_name__"
  },
  "update_url": "http://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}