ShowIp

Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.

What is ShowIp?

ShowIp is a Chrome extension developed by https://opensource.teqneers.com, and its main feature is "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.".

Extension Screenshots

screenshot

Download ShowIp Extension CRX File

Download ShowIp extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension works with Google Chrome 18 (beta) or higher.                    

Extension Basic Information

Name ShowIp ShowIp
ID agoljmemkbciolpigpabjfkagboolkcj
Official URL https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj
Description Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
File Size 54.38 KB
Installation Count 23,164
Current Version 1.0
Last Updated 2012-05-19
Publish Date 2012-05-19
Rating 3.50/5 Total 80 Ratings
Developer https://opensource.teqneers.com
Payment Type free
Extension Website http://opensource.teqneers.com/showip.html
Supported Languages en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ShowIp",
    "minimum_chrome_version": "18",
    "version": "1.0",
    "description": "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.",
    "icons": {
        "16": "icons\/icon_016.png",
        "48": "icons\/icon_048.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "webRequest",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "ip.css"
            ],
            "js": [
                "jquery-1.7.1.min.js",
                "ip.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}