show ip

show ip

show ip란 무엇입니까?

show ip은(는) mojidong에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "show ip"입니다.

확장 프로그램 스크린샷

screenshot

show ip 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        显示请求页面的ip地址,帮助用户根据ip来区分环境。

2023-12-21
1. 迁移到manifest v3

2019-04-23
1.修复安装报“无法加载扩展程序图标“images/icon16.png”的错误。
2.调整默认显示位置为右侧。

2018-10-07
1.移除开发者工具面板。
2.修复IPV6显示问题。

2014-1-11
1.修复pdf全屏时覆盖整个屏幕的问题。
2.修复导航页显示undefined的问题。
3.新增开发者工具面板。
4.调整了显示的字体。                    

확장 프로그램 기본 정보

이름 show ip show ip
ID nfdipejbaaclaioanjipeblnbplaeabl
공식 URL https://chromewebstore.google.com/detail/show-ip/nfdipejbaaclaioanjipeblnbplaeabl
설명 show ip
파일 크기 66.29 KB
설치 횟수 1,263
현재 버전 1.6.1
최근 업데이트 2023-12-22
출시 날짜 2019-04-22
평점 4.22/5 총 9 개의 평점
개발자 mojidong
이메일 [email protected]
결제 유형 free
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "show ip",
    "version": "1.6.1",
    "description": "show ip",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "listen_req.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "show_ip.css"
            ],
            "js": [
                "jquery.js",
                "show_ip.js"
            ]
        }
    ],
    "permissions": [
        "webNavigation",
        "webRequest"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}