Phone.com Screen Sharing

Phone.com Screen Sharing

The extension allows you to share your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Phone.com Screen Sharing",
  "author": "Phone.com Inc.",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "The extension allows you to share your screen.",
  "homepage_url": "https://meet.phone.com",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "https://*.phone.com/*"
      ]
    }
  ],
  "icons": {
    "16": "phone-logo16.png",
    "48": "phone-logo48.png",
    "128": "phone-logo128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}