HackerRank : Screen Share

HackerRank : Screen Share

An extension to allow you to share your screen in CodePair

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HackerRank : Screen Share",
  "description": "An extension to allow you to share your screen in CodePair",
  "version": "1.0",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.hackerrank.net/*"
    ]
  },
  "browser_action": {
    "default_icon": "./icons/mainIcon.png"
  },
  "icons": {
    "16": "./icons/16Logo.png",
    "48": "./icons/48Logo.png",
    "128": "./icons/128Logo.png"
  },
  "permissions": [
    "desktopCapture"
  ]
}