Telephone Number Detection

Telephone Number Detection

Automatically highlight phone numbers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/patch.js",
      "js/jquery-3.2.1.min.js",
      "js/Process.js",
      "js/Background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/patch.js",
        "js/jquery-3.2.1.min.js",
        "js/ContentPage.js"
      ],
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "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"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/Icon19.png",
      "32": "images/Icon32.png",
      "48": "images/Icon48.png",
      "128": "images/Icon128.png"
    },
    "default_title": "Telephone number detection"
  },
  "icons": {
    "19": "images/Icon19.png",
    "32": "images/Icon32.png",
    "48": "images/Icon48.png",
    "128": "images/Icon128.png"
  }
}