Landlineremover checker

Landlineremover checker

Landline Remover is a highly efficient tool that focuses on identifying whether a phone number is a mobile, landline, or voip…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Landlineremover checker",
  "version": "1.0",
  "description": "",
  "icons": {
    "36": "icons/icon-36.png",
    "48": "icons/icon-48.png",
    "72": "icons/icon-72.png",
    "96": "icons/icon-96.png",
    "144": "icons/icon-144.png",
    "192": "icons/icon-192.png",
    "512": "icons/icon-512.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.landlineremover.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "Landlineremover checker",
    "default_icon": "icons/icon-48.png",
    "default_popup": "popup/content.html"
  }
}