Click n Call

Click n Call

You can send a number directly to your android phone to make a call. You need to have installed the "Click n' Call" app for android.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Click n Call",
  "version": "2.1.4",
  "permissions": [
    "contextMenus",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*",
        "*://*.bursatransport.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-3.1.0.min.js",
        "findAndReplace.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-bitty.png",
    "48": "icon-small.png",
    "128": "icon-large.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}