ShowIp

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

ShowIp là gì?

ShowIp là một tiện ích mở rộng Chrome được phát triển bởi https://opensource.teqneers.com, và tính năng chính của nó là "Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ShowIp

Tải xuống các tệp mở rộng ShowIp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ShowIp ShowIp
ID agoljmemkbciolpigpabjfkagboolkcj
URL Chính Thức https://chromewebstore.google.com/detail/showip/agoljmemkbciolpigpabjfkagboolkcj
Mô tả Show IPv4 & IPv6 addresses of the current webpage without doing external requests to a home server.
Kích Thước Tệp 54.38 KB
Số Lần Cài Đặt 23,164
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2012-05-19
Ngày Phát Hành 2012-05-19
Đánh Giá 3.50/5 Tổng số 80 Đánh Giá
Nhà Phát Triển https://opensource.teqneers.com
Loại Thanh Toán free
Trang Web Mở Rộng http://opensource.teqneers.com/showip.html
Ngôn Ngữ Được Hỗ Trợ 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
}