cine.io Screen Sharing

cine.io Screen Sharing

Share your screen with cine.io

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "cine.io Screen Sharing",
  "description": "Share your screen with cine.io",
  "version": "0.2.1",
  "icons": {
    "16": "cine-icon-16x16.png",
    "64": "cine-icon-64x64.png"
  },
  "permissions": [
    "desktopCapture",
    "<all_urls>"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "ids": "*",
    "matches": [
      "*://*.cine.io/*"
    ]
  },
  "manifest_version": 2,
  "minimum_chrome_version": "38"
}