Amazon Chime Screen Share

Amazon Chime Screen Share

Amazon Chime's official browser extension. Amazon Chime lets you meet, chat, and collaborate with the security of AWS. Use the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Chime Screen Share",
  "short_name": "Chime",
  "version": "0.0.0.3",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chime.aws/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.chime.aws/*"
    ]
  },
  "permissions": [
    "*://*.chime.aws/*",
    "desktopCapture",
    "tabs"
  ],
  "icons": {
    "16": "images/chime_icon_16.png",
    "48": "images/chime_icon_48.png",
    "128": "images/chime_icon_128.png"
  }
}