Codassium Screensharing

Codassium Screensharing

Enables screensharing for Codassium

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Codassium Screensharing",
  "description": "Enables screensharing for Codassium",
  "version": "0.1.1",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "icons": {
    "48": "codassium_48.png",
    "128": "codassium_128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://codassium.devlocal/*",
        "https://codassium.com/*"
      ]
    }
  ]
}