Server IP

View Server IP address or alias

Server IP란 무엇입니까?

Server IP은(는) Hixon Web Development에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View Server IP address or alias"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Server IP 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Server IP Server IP
ID lllhkijapbmlekoldcoohglpihmcjdgj
공식 URL https://chromewebstore.google.com/detail/server-ip/lllhkijapbmlekoldcoohglpihmcjdgj
설명 View Server IP address or alias
파일 크기 35.34 KB
설치 횟수 8,747
현재 버전 2.2.0
최근 업데이트 2013-07-04
출시 날짜 2013-07-03
평점 4.28/5 총 47 개의 평점
개발자 Hixon Web Development
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jcottrell/ServerIP
지원되는 언어 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
}