WebConnect Screenshare Extension

WebConnect Screenshare Extension

WebConnect Screenshare Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.5",
  "version_name": "1.0.5",
  "author": "processo",
  "manifest_version": 2,
  "minimum_chrome_version": "53",
  "background": {
    "scripts": [
      "js/background-script.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "*://connect.syntela.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://connect.syntela.com/*"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon22.png",
    "default_title": "WebConnect Screenshare Extension"
  },
  "icons": {
    "16": "images/icon16.png",
    "22": "images/icon22.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "system.cpu",
    "activeTab",
    "tabs",
    "desktopCapture",
    "*://connect.syntela.com/*"
  ],
  "web_accessible_resources": [
    "images/icon32.png",
    "js/content-script.js",
    "js/background-script.js"
  ]
}