Website IP

Website IP

Simple script which places the IP of the current website in the bottom right.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Website IP",
  "version": "1.5.2",
  "minimum_chrome_version": "18",
  "manifest_version": 2,
  "description": "Simple script which places the IP of the current website in the bottom right.",
  "icons": {
    "16": "/images/icon16.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "/images/icon48.png",
    "default_popup": "popup.html",
    "default_title": "Website IP Options"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "jquery.ip.js",
        "ip.js"
      ],
      "css": [
        "css/ip.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}