Vimeo Private Downloader

Vimeo Private Downloader

Download private VIMEO video of the current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vimeo Private Downloader",
  "version": "1.0.1",
  "description": "Download private VIMEO video of the current tab.",
  "author": "[email protected]",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ],
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Titulo default"
  }
}