IceLink WebRTC Screen Capture

IceLink WebRTC Screen Capture

This extension allows IceLink WebRTC connections to use the screen as a video source.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IceLink WebRTC Screen Capture",
  "version": "3.0.10",
  "description": "This extension allows IceLink WebRTC connections to use the screen as a video source.",
  "icons": {
    "16": "IceLink-16.png",
    "32": "IceLink-32.png",
    "48": "IceLink-48.png",
    "128": "IceLink-128.png"
  },
  "author": "Frozen Mountain Software",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "homepage_url": "https://www.frozenmountain.com/icelink/",
  "minimum_chrome_version": "34",
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "IceLink-16.png",
    "IceLink-32.png",
    "IceLink-48.png",
    "IceLink-128.png"
  ]
}