Server IP

View Server IP address or alias

Server IP là gì?

Server IP là một tiện ích mở rộng Chrome được phát triển bởi Hixon Web Development, và tính năng chính của nó là "View Server IP address or alias".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Server IP 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

                        What's new in v2.2.0?
- Added option for each IP to also be associated with a color
- Reduced the amount of flicker when loading multiple windows or tabs

Simple chrome extension that gives you the IP address of the server where the current page was received from - great for switching hosts file between local, development, QC, and live servers that require the same url.

Similar to ShowIP for Firefox. A difference from ShowIP is that Chrome does not leave enough room to automatically show the full IP address. For this reason just the last segment is shown automatically but the full IP address is available by clicking on the icon. You can also assign a mnemonic / abbreviation and colors through the Options panel.

Published under the MIT License.

GitHub listing: https://github.com/jcottrell/ServerIP

Note that it requires some type of network traffic with the site before it will register the IP address.                    

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

Tên Server IP Server IP
ID lllhkijapbmlekoldcoohglpihmcjdgj
URL Chính Thức https://chromewebstore.google.com/detail/server-ip/lllhkijapbmlekoldcoohglpihmcjdgj
Mô tả View Server IP address or alias
Kích Thước Tệp 35.34 KB
Số Lần Cài Đặt 8,747
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2013-07-04
Ngày Phát Hành 2013-07-03
Đánh Giá 4.28/5 Tổng số 47 Đánh Giá
Nhà Phát Triển Hixon Web Development
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jcottrell/ServerIP
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Server IP",
    "version": "2.2.0",
    "description": "View Server IP address or alias",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "",
        "tabs"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_title": "ServerIP",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "hover-box.js"
            ]
        }
    ],
    "manifest_version": 2
}