Acefone WebPhone

Acefone WebPhone

Acefone integrated webphone/softphone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Acefone WebPhone",
  "short_name": "webphone",
  "description": "Acefone integrated webphone/softphone",
  "version": "0.7.8",
  "icons": {
    "128": "images/favicon.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/favicon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://*/*.pdf"
      ],
      "js": [
        "assets/js/jquery.min.js",
        "assets/js/jquery-ui.js",
        "findAndReplaceDOMText.js",
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "background"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "assets/*",
        "phone.html",
        "index.html",
        "login.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}