Streams Communications

Streams Communications

Use Streams to make phone calls from the Chrome browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Streams Communications",
  "description": "Use Streams to make phone calls from the Chrome browser.",
  "version": "3.8",
  "options_ui": {
    "page": "/html/streams_options.html",
    "open_in_tab": false
  },
  "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": [
    "cookies",
    "storage",
    "notifications",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.google.com/*",
      "https://*.google.com/*"
    ]
  },
  "background": {
    "service_worker": "/JS/background_script/backgroundScript.js"
  },
  "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": [
    {
      "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"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}