ImDV | Downloader for Vimeo

ImDV | Downloader for Vimeo

Download video from vimeo.com in a single click. Also you can download embedded vimeo video from any website.

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": "2.1.2",
  "default_locale": "en",
  "icons": {
    "16": "img/icon_16.png",
    "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/libs/parser.min.js",
      "js/background_script.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "tabs",
    "downloads",
    "cookies",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.vimeo.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/libs/ffmpeg-worker.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'",
  "web_accessible_resources": [
    "css/*",
    "img/*",
    "fonts/*"
  ]
}