Website Server IP - Supports IPv6,Copy,Hide

Website Server IP - Supports IPv6,Copy,Hide

It displays the server IP of the current website, supports IPv6 , copy IP, hide IP, switch floating layer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "version": "2.1.5",
  "default_locale": "en",
  "minimum_chrome_version": "18",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "/images/icon48.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_extDefaultTitle__"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "js/jquery.ip.js",
        "js/content.js"
      ],
      "css": [
        "css/ip.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}