Jostle Screen Sharing

Jostle Screen Sharing

A Chrome extension that enables you to share your screen during a 1:1 video Call.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Jostle Screen Sharing",
  "author": "Jostle",
  "version": "1.3",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "A Chrome extension that enables you to share your screen during a 1:1 video Call.",
  "homepage_url": "https://chrome.google.com/webstore/detail/jostle-screen-sharing/lgfjmghkoacgbdjffclmblfkmlhnjbbf?hl=en",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "desktopCapture",
    "activeTab"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}