ShowIp

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

什么是ShowIp?

ShowIp是由https://opensource.teqneers.com开发的Chrome扩展程序,该扩展的主要功能是“Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.”。

扩展截图

screenshot

下载ShowIp扩展crx文件

下载ShowIp扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 ShowIp ShowIp
ID agoljmemkbciolpigpabjfkagboolkcj
官方URL https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj
简介 Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
文件大小 54.38 KB
安装次数 23,164
当前版本 1.0
更新时间 2012-05-19
上架时间 2012-05-19
评分 3.50/5 共80次评分
开发者 https://opensource.teqneers.com
付费类型 free
扩展官网 http://opensource.teqneers.com/showip.html
支持的语言 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
}