Telephone Number Detection

Telephone Number Detection

Automatically convert phone numbers into clickable links, compatible with many telephony applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "TelephoneNumberDetection@CTI-Telephony",
      "strict_min_version": "55.0"
    }
  },
  "browser_action": {
    "default_area": "navbar",
    "default_icon": {
      "19": "images/Icon19.png",
      "32": "images/Icon32.png",
      "48": "images/Icon48.png",
      "128": "images/Icon128.png"
    },
    "default_title": "Telephone number detection"
  },
  "name": "Telephone Number Detection",
  "description": "Automatically highlight phone numbers",
  "author": "CTI-Telephony",
  "version": "1.2.5",
  "manifest_version": 2,
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.2.1.min.js",
      "js/Process.js",
      "js/Background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/ContentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "19": "images/Icon19.png",
    "32": "images/Icon32.png",
    "48": "images/Icon48.png",
    "128": "images/Icon128.png"
  }
}