Mobile VoIP Connect

Mobile VoIP Connect

Can Initiate a call by clicking on any phone number displayed in the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mobile VoIP Connect",
  "version": "0.0.5.0",
  "description": "Can Initiate a call by clicking on any phone number displayed in the browser",
  "content_scripts": [
    {
      "js": [
        "jquery-3.2.1.min.js",
        "core.js",
        "ui.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "./icon.png"
  },
  "browser_action": {
    "default_icon": "./icon.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "https://api.mobilevoipconnect.com/"
  ]
}