Communikate Screen Sharing (Beta)

Communikate Screen Sharing (Beta)

Chrome extension to enable capturing of a tab as a image to broadcast to other listening browsers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Communikate Screen Sharing (Beta)",
  "description": "Chrome extension to enable capturing of a tab as a image to broadcast to other listening browsers.",
  "version": "1.4",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "idle",
    "<all_urls>"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon/32.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.min.js",
        "content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/glyphicons-halflings-white.png"
  ]
}