YouTube Screenshoter

YouTube Screenshoter

Take screenshots from YouTube video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YouTube Screenshot",
  "description": "Take screenshots from YouTube video",
  "version": "1.4.0",
  "icons": {
    "96": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/index.html"
  },
  "permissions": [
    "storage"
  ]
}