Screenshot for Youtube & Other Video Services

Screenshot for Youtube & Other Video Services

Take a screenshot of any YouTube & other video services video with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDesc__",
  "author": "Hopebest Limited",
  "version": "3.0.2",
  "version_name": "3.0.2",
  "default_locale": "en",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": "images/icon128.png",
    "default_popup": "ui/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://youtube.com/*",
        "*://*.youtube.com/*",
        "*://vimeo.com/*",
        "*://*.vimeo.com/*"
      ],
      "js": [
        "scripts/config.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "/scripts/bg-worker.js"
  },
  "homepage_url": "https://video-screenshot.freespeedcheck.net/"
}