Youtube Screenshot

Youtube Screenshot

Takes a screenshot of a youtube video on pressing Shift + A

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Screenshot",
  "version": "2.0",
  "description": "Takes a screenshot of a youtube video on pressing Shift + A",
  "icons": {
    "48": "icons/camera-icon-52.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}