Blackboard Collaborate Speed Control

Blackboard Collaborate Speed Control

Automatically adds a speed toggle to recordings on BB Collab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Blackboard Collaborate Speed Control",
  "version": "3.0",
  "manifest_version": 2,
  "description": "Automatically adds a speed toggle to recordings on BB Collab.",
  "content_scripts": [
    {
      "matches": [
        "*://*.bbcollab.com/collab/ui/session/playback*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  }
}