GlobalMed EasyShare®

GlobalMed EasyShare®

Provides screen sharing functionality for WebRTC

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GlobalMed EasyShare®",
  "version": "1.4",
  "description": "Provides screen sharing functionality for WebRTC",
  "author": "GlobalMed",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "gm_background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "gm_content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "gm_content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "desktopCapture",
    "<all_urls>"
  ]
}