Peoplefone Softphone Extension

Peoplefone Softphone Extension

You need a peoplefone account and a valid subscription for the softphone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "version": "1.0.1.0",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "48": "/img/icon_48.png",
    "128": "/img/icon_128.png"
  },
  "browser_action": {
    "default_title": "__MSG_extension_name__"
  },
  "externally_connectable": {
    "matches": [
      "*://.peoplefone.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "/img/icon.svg"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://webrtc.peoplefone.ch/*",
        "*://softphone.peoplefone.com/*",
        "*://softphone-rc.peoplefone.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://webrtc.peoplefone.ch/*",
        "*://softphone.peoplefone.com/*",
        "*://softphone-rc.peoplefone.com/*"
      ],
      "js": [
        "content_notif.js"
      ]
    }
  ]
}