JWPlayer - Theatre mode

JWPlayer - Theatre mode

Add a theatre mode button to all JWPlayers.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JWPlayer - Theatre mode",
  "version": "0.1",
  "description": "Add a theatre mode button to all JWPlayers.",
  "short_name": "JWPlayer Theatre mode",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "theatremode.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "embed.js"
  ],
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "manifest_version": 2
}