Ciclano Screen Share

Ciclano Screen Share

Capture full-screen or specific application's screen on any HTTPs domain! Even audio+tab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ciclano Screen Share",
  "author": "Ciclano.io",
  "version": "1.3",
  "manifest_version": 2,
  "minimum_chrome_version": "40",
  "description": "Capture full-screen or specific application's screen on any HTTPs domain! Even audio+tab!",
  "homepage_url": "https://ciclano.io",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://beta.ciclano.io/*",
        "https://*.player.tv.br/*",
        "https://*.ciclano.io/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://beta.ciclano.io/*",
      "https://*.player.tv.br/*",
      "https://*.ciclano.io/*"
    ]
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}