Website IP

Website IP

Simple add-on that displays the current website IP address without a third party service. Converting the current tabs domain name to IPv4 & IPv6 via DNS lookup.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "",
  "manifest_version": 2,
  "name": "Get Website IP",
  "version": "2.2",
  "homepage_url": "https://github.com/liamstewart23/Firefox-WebsiteIP",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "dns"
  ],
  "browser_action": {
    "default_icon": "icons/icon.png",
    "theme_icons": [
      {
        "light": "icons/icon.png",
        "dark": "icons/icon.png",
        "size": 48
      }
    ],
    "default_title": "Get Website IP",
    "default_popup": "popup/index.html"
  }
}