VideoSync Screen Capture

VideoSync Screen Capture

Plugin for capturing your screen in VideoSync

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VideoSync Screen Capture",
  "author": "Flik Media Group Oy",
  "version": "3.6",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Plugin for capturing your screen in VideoSync",
  "homepage_url": "https://getvideosync.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://videosync.fi/*",
        "https://videosync.club/*",
        "https://videosync.dev/*",
        "http://localhost/*",
        "http://localhost:3000/*",
        "https://getvideosync.com/*",
        "https://wms.magneetto.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon-16.png"
  ]
}