ReLANpro Student Recorder

ReLANpro Student Recorder

The language lab app for students. Now with LAN pairing and grouping.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ReLANpro Student Recorder",
  "short_name": "ReLANpro Student",
  "description": "The language lab app for students. Now with LAN pairing and grouping.",
  "version": "2.46",
  "version_name": "2.4",
  "minimum_chrome_version": "56",
  "offline_enabled": false,
  "icons": {
    "16": "assets/icon_16.png",
    "128": "assets/icon_128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "storage",
    "unlimitedStorage",
    "system.network",
    "audioCapture",
    "videoCapture",
    "desktopCapture",
    {
      "fileSystem": [
        "write",
        "directory"
      ]
    }
  ],
  "sockets": {
    "udp": {
      "bind": [
        "*:1337",
        "*:80"
      ],
      "listen": [
        "*:1337",
        "*:80"
      ],
      "send": [
        "*:1337",
        "*:80"
      ]
    },
    "tcp": {
      "connect": [
        "*:1338",
        "*:1337",
        "*:80"
      ],
      "listen": [
        "*:1338",
        "*:1337",
        "*:80"
      ],
      "send": [
        "*:1338",
        "*:1337",
        "*:80"
      ]
    }
  }
}