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
官方網址 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
}