Public IP

Information about your public IP

Public IP란 무엇입니까?

Public IP은(는) sunkike에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Information about your public IP"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Information about your public IP
Features:
- You can see your public IP in a button on Chrome.
- You can see your country icon of your public IP.
- If you mouse over the flag, you can see your public ip.
- if your ip changes the button shows the times that it changed. If you click the button it shows the last IP's changes.

If you want new features don't doubt to leave a comment.

This is a evolution of this chrome extension:
https://chrome.google.com/webstore/detail/info-ip/ljaikkdaeokocficpgcbaicnchpghcbh                    

확장 프로그램 기본 정보

이름 Public IP Public IP
ID hdncepcaknamfckdlajmjamjegcnjaea
공식 URL https://chrome.google.com/webstore/detail/public-ip/hdncepcaknamfckdlajmjamjegcnjaea
설명 Information about your public IP
파일 크기 288 KB
설치 횟수 56
현재 버전 1.0.1
최근 업데이트 2015-03-07
출시 날짜 2015-03-07
평점 1.00/5 총 1 개의 평점
개발자 sunkike
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Public IP",
    "short_name": "Public_ip",
    "version": "1.0.1",
    "minimum_chrome_version": "18",
    "description": "Information about your public IP",
    "icons": {
        "16": "\/images\/icon16.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "\/images\/icon16.png",
            "38": "\/images\/icon48.png"
        },
        "default_title": "Public IP",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "jquery-infoip.js",
                "business.js"
            ],
            "css": [
                "css\/customStyleIP.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/iconFlags\/24\/*.png",
        "functionsIP.js"
    ]
}