Biztalk Screen Sharing

Biztalk Screen Sharing

Biztalk screen sharing - Chrome extension

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Biztalk Screen Sharing",
  "author": "Biztalk",
  "version": "0.0.0.2",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Biztalk screen sharing - Chrome extension",
  "homepage_url": "https://biztalk.online",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "96": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "tabs",
    "https://*/"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}