Desktop Application Launch from Chrome

Desktop Application Launch from Chrome

There is a requirement to launch desktop application from chrome.we have created our own custom chrome extn to serve this purpose.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Desktop Application Launch from Chrome",
  "version": "3.2",
  "manifest_version": 3,
  "description": "There is a requirement to launch desktop application from chrome.we have created our own custom chrome extn to serve this purpose.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "nativeMessaging",
    "windows"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "include_globs": [
        "*discoverfinancial*"
      ],
      "all_frames": true,
      "js": [
        "content_dcds.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background_dcds.js"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "include_globs": [
      "*discoverfinancial*"
    ],
    "accept_tls_channel_id": false
  }
}