Skrumble Screen Share

Skrumble Screen Share

This extension enables screen sharing on the Skrumble platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Skrumble Screen Share",
  "description": "This extension enables screen sharing on the Skrumble platform.",
  "version": "2.0",
  "icons": {
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "browser_action": {
    "default_icon": "icons/19x19.png"
  },
  "permissions": [
    "tabs",
    "desktopCapture",
    "https://app.skrumble.com/",
    "http://localhost/"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.skrumble.com/*",
        "http://localhost/*"
      ],
      "js": [
        "insert.js"
      ]
    }
  ]
}