IP Address Checker - Proxy, VPN, Geolocation

IP Address Checker - Proxy, VPN, Geolocation

Determine if an IP address is a Proxy or VPN connection, retrieve its Fraud Score and Geolocation on-the-go! Supports IPv4 and IPv6.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "IP Address Checker - Proxy, VPN, Geolocation",
  "version": "1.2",
  "description": "Determine if an IP address is a Proxy or VPN connection, retrieve its Fraud Score and Geolocation on-the-go! Supports IPv4 and IPv6.",
  "action": {
    "default_popup": "index.html",
    "default_icon": "images/icon.png"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "scripting",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}