Video Note & Screenshot

Video Note & Screenshot

Go to take YouTube notes or screenshot YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Note & Screenshot",
  "description": "Go to take YouTube notes or screenshot YouTube.",
  "version": "1.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "*://*/*",
    "https://*.gemoo.com/*",
    "https://*.youtube.com/*"
  ],
  "action": {
    "default_title": "Video Note & Screenshot",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.gemoo.com/*"
      ],
      "css": [
        "assets/content.css"
      ],
      "js": [
        "my-content-script.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}