Ubiq

Ubiq

Ubiq chrome extension for https://present.goubiq.com/*.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ubiq",
  "description": "Ubiq chrome extension for https://present.goubiq.com/*.",
  "homepage_url": "https://www.goubiq.com/",
  "version": "0.4",
  "background": {
    "scripts": [
      "capturedesktop.min.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Ubiq"
  },
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture",
    "activeTab",
    "tabs",
    "https://present.goubiq.com/*"
  ],
  "web_accessible_resources": [
    "icon.png"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://present.goubiq.com/*"
      ],
      "js": [
        "communication.min.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://present.goubiq.com/*"
    ]
  }
}