TelSmart - Phone number finder

TelSmart - Phone number finder

Highlights phone numbers in a web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "TelSmart - Phone number finder",
  "version": "0.2.7",
  "description": "Highlights phone numbers in a web page",
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*",
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "scripting"
  ],
  "icons": {
    "16": "assets/telsmart-logo-16px.png",
    "32": "assets/telsmart-logo-32px.png",
    "48": "assets/telsmart-logo-48px.png",
    "128": "assets/telsmart-logo-128px.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*",
        "<all_urls>"
      ],
      "js": [
        "thirdParty/jquery-3.6.1.min.js",
        "thirdParty/jquery.mark.min.js",
        "thirdParty/libphonenumber.js",
        "content.js",
        "settings.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/telsmart-logo-32px.png",
        "assets/icon.svg",
        "assets/loader.gif",
        "thirdParty/libphonenumber.js",
        "popup.html",
        "settings.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*",
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/telsmart-logo-16px.png",
      "24": "assets/telsmart-logo-24px.png",
      "32": "assets/telsmart-logo-32px.png"
    },
    "default_title": "TelSmart - Phone number finder",
    "default_popup": "popup.html"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}