Video Screenshot

Video Screenshot

Take a screenshot of the video. Take a screenshot of the video being played on a <video> element such as YouTube, Twitter or Twitch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_shortname__",
  "description": "__MSG_extension_description__",
  "version": "1.2023.317.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{14a8d228-69a2-47fd-9671-dd0d62037931}"
    }
  },
  "icons": {
    "96": "lib/screenshot.svg"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "menus",
    "downloads",
    "notifications",
    "clipboardWrite",
    "management"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "96": "lib/screenshot.svg"
    },
    "browser_style": true,
    "default_title": "__MSG_temporarily_enable__"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true,
    "open_in_tab": false
  },
  "commands": {
    "temporarily_enable": {
      "suggested_key": {},
      "description": "__MSG_temporarily_enable__"
    },
    "open_options_page": {
      "suggested_key": {},
      "description": "__MSG_open_options_page__"
    }
  }
}