MeloSIP

MeloSIP

Turn phone numbers on websites into clickable links and automatically initiate phone calls

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "MeloSIP",
  "description": "Turn phone numbers on websites into clickable links and automatically initiate phone calls",
  "version": "11.2.3",
  "homepage_url": "https://siclytics.com",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery-3.1.0.min.js",
        "const.js",
        "melo-sip.js",
        "lib/intlTelInput.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/melosip_16.png",
      "32": "icons/melosip_32.png",
      "64": "icons/melosip_64.png",
      "128": "icons/melosip_128.png"
    },
    "default_title": "MeloSIP"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "lib/*",
        "build/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}