talkroom screen sharing

talkroom screen sharing

Share full-screen or specific application's screen on any HTTPs domain!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "talkroom screen sharing",
  "author": "Galaxy Weblinks",
  "version": "0.0.0.3",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Share full-screen or specific application's screen on any HTTPs domain!",
  "homepage_url": "https://talkroom.io",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://talkroom.io/*",
        "https://blumblum15.galaxysofttech.co.in/*"
      ]
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}