PrimeCall Web App

PrimeCall Web App

PrimeCall Web App is a WebRTC client for PBX.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PrimeCall Web App",
  "manifest_version": 3,
  "version": "5.2.1.0",
  "author": "HoduSoft Pvt. Ltd. ([email protected])",
  "description": "PrimeCall Web App is a WebRTC client for PBX.",
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "action": {
    "default_icon": {
      "19": "img/ext_icons/icon_19.png",
      "38": "img/ext_icons/icon_38.png"
    },
    "default_popup": "popup.html",
    "default_title": "PrimeCall Web App"
  },
  "icons": {
    "16": "img/ext_icons/icon_16.png",
    "48": "img/ext_icons/icon_48.png",
    "128": "img/ext_icons/icon_128.png"
  },
  "options_page": "popup.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/hodupbx.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "scripting",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}