JW Lens

JW Lens

An easy-to-use toolkit for understanding the JW Player, including its event lifecycles, and for troubleshooting player errors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.bundle.js",
        "codemirror-min.js",
        "codemirror-js-theme.js"
      ]
    }
  ],
  "name": "JW Lens",
  "icons": {
    "128": "jwplayer-logo.png"
  },
  "web_accessible_resources": [
    "inject.bundle.js",
    "inspector.less",
    "ig-logo.svg",
    "jwplayer-logo.png",
    "external-page.svg",
    "upload.svg",
    "*.ttf"
  ],
  "description": "An easy-to-use toolkit for understanding the JW Player, including its event lifecycles, and for troubleshooting player errors.",
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "homepage_url": "http://developer.jwplayer.com/",
  "version": "0.10.0",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://cdnjs.cloudflare.com https://ssl.p.jwpcdn.com https://imasdk.googleapis.com https://unpkg.com https://fonts.googleapis.com https://jwp-config-validator.jwplayer.com  'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "jwplayer-logo.png",
    "default_title": "JW Lens"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "background",
    "webRequest",
    "storage"
  ]
}