CallSwitch Call

CallSwitch Call

Use CallSwitch to call numbers in Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "TelcoSwitch Limited",
  "background": {
    "service_worker": "call_action.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "google_phone_lib.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "highlight_numbers.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Use CallSwitch to call numbers in Chrome.",
  "icons": {
    "16": "app16.png",
    "32": "app32.png",
    "48": "app48.png",
    "128": "app128.png"
  },
  "manifest_version": 3,
  "name": "CallSwitch Call",
  "permissions": [
    "contextMenus"
  ],
  "version": "6.0.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "glocom_icon.jpg",
        "detectAjax.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}