TawkNow Desktop Capture

TawkNow Desktop Capture

Capture full screen or specific application's screen. This is a part of ScreenShare function of TawkNow application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TawkNow Desktop Capture",
  "description": "Capture full screen or specific application's screen. This is a part of ScreenShare function of TawkNow application",
  "version": "0.1.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-script.js"
      ],
      "matches": [
        "https://www.tawknow.com/room/*",
        "https://tawknow.com/room/*"
      ],
      "run_at": "document_end"
    }
  ],
  "homepage_url": "https://www.tawknow.com/",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture"
  ]
}