Easy Live Screen Sharing

Easy Live Screen Sharing

Easy Live Screen Sharing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Easy Live Screen Sharing",
  "author": "Easy Live",
  "version": "1.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Easy Live Screen Sharing",
  "homepage_url": "https://goeasylive.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://*.goeasy.live/*",
        "https://goeasy.live/*"
      ]
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "audioCapture",
    "https://*/"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}