sipgate App Click2Dial

sipgate App Click2Dial

Call someone directly from your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAotbvhDiulMy5qzq1HbYrU8YwuV5CAe2Ws65QxYQC1jQyTlbOLFDpburfIwshoovSp0wKYVpV5DCbbMxmxaX5U+z9Nq3qM68Kwg72hjlsqhKtC/O5GQjaDExrRoJCHDsnlYI1yW+TKXi1gMtxh6y2OtZykg9JGOq5iwi2CIlvMsIUwzkOffEq/izhZTCQnWb42XKZuBsD6igfBp8Zyjde+ST1p4b+IH/faQ6PNi68852I5fhhr2gaSpepGyzBnAYLHNw+Di1ijRjTFUYGQO0USiwpcAQR8KC2Blk/kJxxL1Y6MrL4CnwDpYjbGndnoHdE865bmhbLpLvU7qX2zeLxlQIDAQAB",
  "default_locale": "de",
  "name": "__MSG_appNameSipgate__",
  "short_name": "sipgate",
  "description": "__MSG_appDescriptionSipgate__",
  "version": "2.0.3",
  "homepage_url": "https://www.sipgate.de/",
  "icons": {
    "16": "resources/images/icon16.png",
    "32": "resources/images/icon32.png",
    "48": "resources/images/icon48.png",
    "128": "resources/images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "resources/images/icon16.png",
      "32": "resources/images/icon32.png",
      "48": "resources/images/icon48.png",
      "128": "resources/images/icon128.png"
    },
    "default_title": "__MSG_appNameSipgate__"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://*.sipgate.com/*",
      "*://*.sipgate.de/*",
      "*://*.clinq.com/*",
      "*://*.clinq.app/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self' https://www.google-analytics.com"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "resources/images/*",
        "html/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "*://*.sipgate.de/"
  ]
}