Lync

Lync

Single system to connect all online services for Lync users

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lync",
  "description": "Single system to connect all online services for Lync users",
  "version": "1.0.19",
  "icons": {
    "128": "icon_128.png"
  },
  "action": {
    "default_icon": "icon_128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "cookies",
    "contextMenus",
    "clipboardWrite"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/content_scripts.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:*/*",
      "https://launcher.letslync.com/*",
      "https://demolauncher.letslync.com/*",
      "https://app.letslync.com/*",
      "https://demoapp.letslync.com/*",
      "https://sso.haatch.in/*"
    ]
  }
}