Konnect Communications

Konnect Communications

Use Konnect to make phone calls from the Chrome browser and from within Microsoft Teams application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Konnect Communications",
  "description": "Use Konnect to make phone calls from the Chrome browser and from within Microsoft Teams application.",
  "version": "2.2",
  "options_ui": {
    "page": "/html/streams_options.html",
    "open_in_tab": false
  },
  "browser_action": {
    "default_icon": "/Images/Stream_Ext_48.png"
  },
  "icons": {
    "16": "/Images/Stream_Ext_16.png",
    "48": "/Images/Stream_Ext_48.png",
    "128": "/Images/Stream_Ext_128.png"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "/JS/conf.js",
      "/JS/helperScript.js",
      "/JS/background_script/backgroundScript.js"
    ],
    "persistence": "false"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/CSS/Streams.css"
      ],
      "all_frames": true,
      "js": [
        "/JS/lib/jquery-3.4.1.min.js",
        "/JS/lib/queue.js",
        "/JS/conf.js",
        "/JS/helperScript.js",
        "/JS/content_script/invokerScript.js",
        "/JS/content_script/sCTCScript.js",
        "/JS/content_script/sQAScript.js",
        "/JS/content_script/MSTeamsScript.js"
      ]
    }
  ],
  "incognito": "split",
  "web_accessible_resources": [
    "/Images/*.png",
    "/Images/*.svg",
    "/html/streams.html",
    "/JS/conf.js",
    "/JS/helperScript.js",
    "/JS/frontend_script/webScript.js",
    "/JS/content_script/sCTCScript.js",
    "/JS/background_script/backgroundScript.js"
  ]
}