Screen Share

Screen Share

Capture full-screen or specific application's screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Screen Share",
  "author": "RushTax",
  "version": "0.6.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Capture full-screen or specific application's screen",
  "homepage_url": "https://chrome.google.com/webstore/detail/screen-share/oeliihemcaiaoikhmnagmjkkngnijpma?hl=en",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "48": "screenshare.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "screenshare.png"
  ]
}