Simotel WebRTC Softphone

Simotel WebRTC Softphone

This extension is a sip phone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.2",
  "name": "Simotel WebRTC Softphone",
  "author": "NasimTelecom ([email protected])",
  "short_name": "simotel-webrtc",
  "description": "This extension is a sip phone",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_title": "NasimTelecom WebRTC",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon16.png",
      "32": "img/icon32.png"
    }
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/icon16.png",
    "32": "img/icon32.png"
  },
  "permissions": [
    "background",
    "storage",
    "notifications",
    "*://*/*",
    "<all_urls>",
    "http://*/",
    "https://*/",
    "audio-capture",
    "video-capture"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "*"
  ]
}