Entrenarse Screenshare Extension

Entrenarse Screenshare Extension

Chrome Extension granting WebRTC screen capturing capabilities to Entrenarse meetings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Entrenarse Screenshare Extension",
  "author": "Entrenarse",
  "version": "0.1.6",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Chrome Extension granting WebRTC screen capturing capabilities to Entrenarse meetings.",
  "homepage_url": "https://entrenar.se/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "externally_connectable": {
    "matches": [
      "*://*.entrenar.se/*"
    ]
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}