Motif Browser Sharing

Motif Browser Sharing

Motif

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Motif Browser Sharing",
  "short_name": "Motif",
  "version": "2.3.6",
  "manifest_version": 2,
  "description": "Motif",
  "icons": {
    "128": "img/thumb_logo.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://localhost:*/viewer.html*",
        "*://meetanywhere.com/viewer.html*",
        "*://*.usermotif.com/viewer.html*",
        "*://localhost:*/host.html*",
        "*://meetanywhere.com/host.html*",
        "*://*.usermotif.com/host.html*"
      ],
      "js": [
        "js/sdk.js",
        "js/init.js",
        "js/hub.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "background": {
    "page": "ui/audio.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "img/thumb_logo.png",
    "default_popup": "ui/popup.html"
  }
}