Browser SIP Phone

Browser SIP Phone

Browser SIP Phone is an WebRTC client which works using WebRTC & SIP protocol

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.0",
  "short_name": "Browser SIP Phone",
  "name": "Browser SIP Phone",
  "description": "Browser SIP Phone is an WebRTC client which works using WebRTC & SIP protocol",
  "browser_action": {
    "default_title": "Browser SIP Phone",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "notifications",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}