LearnMax Screensharing

LearnMax Screensharing

Extension to allow screen sharing for LearnMax.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "name": "LearnMax Screensharing",
  "permissions": [
    "desktopCapture"
  ],
  "short_name": "LearnMax - Screen Sharing",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.0.6",
  "homepage_url": "http://www.learnmax.com/",
  "background": {
    "persistent": true,
    "scripts": [
      "script.js"
    ]
  },
  "description": "Extension to allow screen sharing for LearnMax.",
  "externally_connectable": {
    "matches": [
      "https://*.learnmax.com:*/*",
      "https://localhost:*/*",
      "https://192.168.1.21:*/*"
    ]
  },
  "icons": {
    "24": "icon-24.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "browser_action": {
    "default_icon": "icon-24.png"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*.learnmax.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon-24.png"
  ]
}