Classbee - Online Class Recorder & Playback

Classbee - Online Class Recorder & Playback

Most Powerful Online Class Lecture Recorder for Chrome. Capture, Annotate, Playback, Share and more.

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_extDesc__",
  "offline_enabled": true,
  "version": "1.0.0",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "page": "./html/background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "assets/extension-icons/logo-32.png",
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "assets/extension-icons/logo-16.png",
    "48": "assets/extension-icons/logo-48.png",
    "128": "assets/extension-icons/logo-128.png"
  },
  "permissions": [
    "activeTab",
    "tabCapture",
    "tabs",
    "downloads.shelf",
    "downloads",
    "storage",
    "downloads.open"
  ],
  "web_accessible_resources": [
    "html/settings.html",
    "js/content.js",
    "css/content.css",
    "assets/images/*",
    "js/libraries/plyr.min.js",
    "css/libraries/plyr.min.css",
    "js/audiosources.js",
    "html/audiosources.html"
  ],
  "commands": {
    "cancel": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "__MSG_extCancel__"
    },
    "mute/unmute": {
      "suggested_key": {
        "default": "Alt+M",
        "mac": "Alt+M"
      },
      "description": "__MSG_extMute__"
    },
    "stop": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "__MSG_extStop__"
    },
    "pause/resume": {
      "suggested_key": {
        "default": "Alt+P",
        "mac": "Alt+P"
      },
      "description": "__MSG_extPause__"
    }
  }
}