Montage Extension

Montage Extension

Multiple devices, people and places connected in a shared workplace

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Montage Extension",
  "short_name": "Montage",
  "author": "DisplayNote Technologies, Ltd",
  "version": "1.0.9",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Multiple devices, people and places connected in a shared workplace",
  "homepage_url": "https://joinmontage.com/web/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://*.displaynote.com/*",
        "https://*.joinmontage.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon48.png"
  ]
}