WebMeeting - Screen Sharing

WebMeeting - Screen Sharing

Developed primary for https://minimeeting.com.br/. It doesn't do anything except capture content of your screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebMeeting - Screen Sharing",
  "short_name": "WebMeeting SS",
  "description": "Developed primary for https://minimeeting.com.br/. It doesn't do anything except capture content of your screen.",
  "author": "Atitude Midia Digital",
  "version": "1.3.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "homepage_url": "https://minimeeting.com.br/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*.minimeeting.com.br/*",
        "*://minimeeting.com.br/*",
        "*://*.wmvisit.com/*",
        "*://wmvisit.com/*",
        "*://*.wmvisit.com.br/*",
        "*://wmvisit.com.br/*"
      ]
    }
  ],
  "icons": {
    "16": "logo_16x16.png",
    "48": "logo_48x48.png",
    "128": "logo_128x128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}