Unik Room Recorder

Unik Room Recorder

Allows you to record your Unik room activity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Unik Room Recorder",
  "short_name": "Unik Recorder",
  "author": "Prepaze",
  "version": "1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "49",
  "description": "Allows you to record your Unik room activity",
  "homepage_url": "https://unik.prepaze.com/",
  "background": {
    "scripts": [
      "background/background.common.js",
      "background/background.js",
      "background/background.desktopCapture.js",
      "background/background.tabCapture.js",
      "background/background.badgeText.js",
      "background/background.getUserMedia.js",
      "background/background.messaging.js",
      "background/background.players.js",
      "RecordRTC/MediaStreamRecorder.js",
      "RecordRTC/MultiStreamRecorder.js",
      "RecordRTC/MultiStreamsMixer.js",
      "RecordRTC/StereoAudioRecorder.js",
      "RecordRTC/DiskStorage.js",
      "RecordRTC/EBML.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://unikclassroom.prepaze.com/*",
        "https://webrtc-staging.prepaze.com/*"
      ],
      "js": [
        "background/background.contentScript.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "images/main-icon.png",
    "default_title": "Record Your Unik Classroom Screen, Tab, Mic and Speakers"
  },
  "icons": {
    "16": "images/main-icon.png",
    "22": "images/main-icon.png",
    "32": "images/main-icon.png",
    "48": "images/main-icon.png",
    "128": "images/main-icon.png"
  },
  "permissions": [
    "desktopCapture",
    "storage",
    "tabs",
    "tabCapture",
    "activeTab",
    "https://unikclassroom.prepaze.com/*",
    "https://webrtc-staging.prepaze.com/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "images/main-icon.png"
  ]
}