JW video player

Extending the video player functionality (for jw.org website)
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JW video player",
  "description": "Extending the video player functionality (for jw.org website)",
  "version": "1.2",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.jw.org/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  }
}