Birmingham Panopto Keeper

Birmingham Panopto Keeper

Download Panopto Videos from UoB Panopto

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Birmingham Panopto Keeper",
  "version": "1.0.1",
  "description": "Download Panopto Videos from UoB Panopto",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "download-icon-grey.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://bham.cloud.panopto.eu/*"
      ],
      "js": [
        "payload.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "downloads"
  ]
}