Download thumbnail images of youtube/vimeo

Download thumbnail images of youtube/vimeo

Download thumbnail images of youtube/vimeo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Download thumbnail images of youtube/vimeo",
  "description": "Download thumbnail images of youtube/vimeo",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "6.4.1",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "name": "Save youtube,vimeo thumbnail image",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "1.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery.js",
        "download.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "1.png",
    "48": "2.png",
    "128": "3.png"
  },
  "web_accessible_resources": [
    "*.png",
    "*.PNG"
  ],
  "permissions": [
    "tabs",
    "*://*.youtube.com/*",
    "*://*.vimeo.com/*"
  ],
  "manifest_version": 2
}