Brightcove Player Extension

Brightcove Player Extension

Brightcove Player companion extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "img/bpp_logo_16.png",
    "48": "img/bpp_logo_48.png",
    "128": "img/bpp_logo_128.png"
  },
  "action": {
    "default_title": "__MSG_popupTooltip__",
    "default_popup": "popup/settings.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/embed_resources.js",
        "content/message_provider.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "common/initialData.js",
        "embed/player.js",
        "embed/message_receiver.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}