Mavenir Screen Share

Mavenir Screen Share

Mavenir Screen Share Extention

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mavenir Screen Share",
  "version": "1.0.0.0",
  "manifest_version": 2,
  "description": "Mavenir Screen Share Extention",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "72": "images/icons/icon-72x72.png",
    "96": "images/icons/icon-96x96.png",
    "128": "images/icons/icon-128x128.png",
    "144": "images/icons/icon-144x144.png",
    "152": "images/icons/icon-152x152.png",
    "192": "images/icons/icon-192x192.png",
    "384": "images/icons/icon-384x384.png",
    "512": "images/icons/icon-512x512.png"
  },
  "permissions": [
    "desktopCapture",
    "file://*/*",
    "tabs"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}