Click to call Zadarma

Click to call Zadarma

Click to call Zadarma

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.14",
  "short_name": "ZClickToCall",
  "name": "Click to call Zadarma",
  "manifest_version": 3,
  "description": "Click to call Zadarma",
  "default_locale": "en",
  "action": {
    "default_icon": "android-chrome-48x48.png",
    "default_title": "ZWebRTC",
    "default_popup": "action.html"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "static/js/background.js",
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "static/js/content.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/js/inpage.js",
        "js-lib/dynamics-web-api.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "videoCapture",
    "audioCapture",
    "contextMenus",
    "storage",
    "https://*/*",
    "http://*/*",
    "wss://*/*",
    "ws://*/*"
  ],
  "icons": {
    "48": "android-chrome-48x48.png",
    "192": "android-chrome-192x192.png"
  },
  "host_permissions": [
    "file://*/*",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; frame-ancestors 'none';"
  },
  "minimum_chrome_version": "88"
}