MyNewBee Screensharing

MyNewBee Screensharing

This plugin is used to record the screen of the candidate during a remote interview on MyNewBee

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MyNewBee Screensharing",
  "short_name": "MyNewBee Screensharing",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "This plugin is used to record the screen of the candidate during a remote interview on MyNewBee",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": "icon16.png"
  },
  "background": {
    "scripts": [
      "capture.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "extensionid.js"
      ],
      "matches": [
        "http://localhost:3449/*",
        "https://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3449/*",
      "https://*.mynewbee.com/*",
      "https://*.palo-it.com/*"
    ]
  },
  "permissions": [
    "desktopCapture",
    "management"
  ]
}