Examine source code of MeloSIP Click2Call

Inspect and view changes in MeloSIP Click2Call source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "MeloSIP",
  "description": "Turn phone numbers on websites into clickable links and automatically initiate phone calls",
  "version": "11.2.4",
  "homepage_url": "https://siclytics.com",
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "lib/jquery-3.1.0.min.js",
      "lib/intlTelInput.js",
      "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"
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/melosip_48.png",
      "96": "icons/melosip_96.png"
    },
    "default_title": "MeloSIP"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "48": "icons/melosip_48.png",
    "96": "icons/melosip_96.png"
  },
  "web_accessible_resources": [
    "lib/*",
    "build/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "melosip@melotel"
    }
  }
}