show ip

show ip

Display the IP address of the current website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "listen_req.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "show_ip.css"
      ],
      "js": [
        "jquery.js",
        "show_ip.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "description": "Display the IP address of the current website   ",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "10.0",
  "name": "show ip",
  "page_action": {
    "default_icon": {
      "24": "images/icon24.png",
      "48": "images/icon48.png"
    },
    "default_title": "show ip"
  },
  "permissions": [
    "webRequest",
    "webNavigation",
    "tabs",
    "*://*/"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.6"
}