Neotel Softphone WebRTC

Neotel Softphone WebRTC

Google Chrome extension to access Neotel WebRTC softphone functionality

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/service_worker.js"
  },
  "action": {
    "default_icon": {
      "32": "images/icon32.png"
    },
    "default_popup": "popup.html"
  },
  "commands": {
    "call_selection": {
      "description": "__MSG_commandCallDesc__",
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "MacCtrl+Shift+L"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "thirdParty/jQuery-3.2.1/jquery-3.2.1.min.js",
        "js/n2k.js",
        "js/call.js"
      ],
      "all_frames": true
    }
  ],
  "default_locale": "es",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "notifications",
    "scripting"
  ],
  "version": "2.0.0.1"
}