WebBoard Screen Capturing

WebBoard Screen Capturing

Capture full-screen or specific application's screen on web-whiteboard.io!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebBoard Screen Capturing",
  "author": "Marko Miletić",
  "version": "4.0",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Capture full-screen or specific application's screen on web-whiteboard.io!",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://*.web-whiteboard.io/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.web-whiteboard.io/*"
    ]
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}