Screen Share Application

Screen Share Application

Application Allows to share you screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "name": "Screen Share Application",
  "permissions": [
    "desktopCapture"
  ],
  "short_name": "Screen Share Application",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.6",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.pruffme.com/*",
        "*://localhost/*"
      ],
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "description": "Application Allows to share you screen",
  "externally_connectable": {
    "matches": [
      "*://*.pruffme.com/*",
      "*://localhost/*"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    "icon.png"
  ],
  "browser_action": {
    "default_icon": "icon_16.png"
  }
}