Video Downloader for Vimeo

Video Downloader for Vimeo

Now you can download videos from vimeo.com in a single click | Can also download embedded video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.3.7",
  "default_locale": "en",
  "icons": {
    "128": "img/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon_16.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background_script.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "downloads",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/content_script.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}