Server IP

View Server IP address or alias

Server IP क्या है?

Server IP Hixon Web Development द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View Server IP address or alias"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Server IP एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}