Screenshot YouTube Video

Screenshot YouTube Video

The extension builds in a button to capture video screenshots from YouTube, OK.ru and allows users to download a frame in JPEG format from watching video with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "short_name": "__MSG_Abbr__",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "0.7.64.1",
  "default_locale": "en",
  "icons": {
    "32": "icon32.png",
    "64": "icon64.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon64.png",
    "default_title": "__MSG_browserActionDefaultTitle__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1e358099-7ee0-470a-8f35-87714b9a8de8}"
    }
  }
}