Awesome Vimeo Downloader

Awesome Vimeo Downloader

Download videos from vimeo.com (download 4K quality videos)

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_extName__",
  "short_name": "Awesome Vimeo Downloader",
  "version": "4.2.4",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "img/logo16.png",
    "48": "img/logo48.png",
    "64": "img/logo64.png",
    "128": "img/logo128.png"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "analytics.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://vimeo.com/*",
        "*://player.vimeo.com/*"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://*.pbion.com/*"
      ],
      "js": [
        "pbion.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "img/logo16.png",
      "48": "img/logo48.png",
      "64": "img/logo64.png",
      "128": "img/logo128.png"
    },
    "default_title": "Vimeo Downloader",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://suggestqueries.google.com/*",
    "https://*.pbion.com/*",
    "*://vimeo.com/*",
    "*://player.vimeo.com/*"
  ],
  "web_accessible_resources": [
    "img/*.svg",
    "vimeo.js",
    "vimeo_player.css"
  ]
}