Floobits Screen Sharing

Floobits Screen Sharing

Share your screen in Floobits

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Floobits Screen Sharing",
  "description": "Share your screen in Floobits",
  "version": "0.1.4",
  "minimum_chrome_version": "38",
  "icons": {
    "16": "images/icon_16x16.png",
    "64": "images/icon_64x64.png"
  },
  "permissions": [
    "desktopCapture",
    "https://*.floobits.com/*",
    "https://*.floobits-enterprise.com/*"
  ],
  "externally_connectable": {
    "ids": "*",
    "matches": [
      "https://*.floobits.com/*",
      "https://*.floobits-enterprise.com/*"
    ]
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.floobits.com/*",
        "https://*.floobits-enterprise.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}