Chrome Screen Sharing

Chrome Screen Sharing

Instant, multi-cursor screen sharing for Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrome Screen Sharing",
  "version": "2.4.122",
  "description": "Instant, multi-cursor screen sharing for Chrome.",
  "manifest_version": 3,
  "author": "Upscope.com",
  "permissions": [
    "tabs",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Share this tab"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "injection.js",
        "upscope.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon/not_active_light_16.png",
    "48": "images/icon/not_active_light_48.png",
    "128": "images/icon/not_active_light_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pdf.worker.entry.*.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}