Info IP
Information about your public IP
Info IP란 무엇입니까?
Info IP은(는) sunkike에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Information about your public IP"입니다.
확장 프로그램 스크린샷
Info IP 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - You can see your public IP on bottom left in your web browser. - You can see your country flag next to your IP v4. - If you click in the box, it will disappear. To see it again you must refresh the webpage or go to another url. Version 1.0.4.1: - Use https in geo locating service. - Change Icon - Please visit new extension: https://chrome.google.com/webstore/detail/public-ip/hdncepcaknamfckdlajmjamjegcnjaea Version 1.0.3: - You can see country flag of the site that you are visiting. - If you mouse over the flag, you can see the site's ip If you want new features don't doubt to leave a comment.
확장 프로그램 기본 정보
이름 | Info IP |
ID | ljaikkdaeokocficpgcbaicnchpghcbh |
공식 URL | https://chromewebstore.google.com/detail/info-ip/ljaikkdaeokocficpgcbaicnchpghcbh |
설명 | Information about your public IP |
파일 크기 | 288 KB |
설치 횟수 | 40 |
현재 버전 | 1.0.4.1 |
최근 업데이트 | 2015-03-07 |
출시 날짜 | 2015-03-07 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | sunkike |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Info IP", "short_name": "info_ip", "version": "1.0.4.1", "minimum_chrome_version": "18", "description": "Information about your public IP", "icons": { "128": "\/images\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "19": "\/images\/icon16.png", "38": "\/images\/icon48.png" }, "default_title": "Info IP" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "webRequest" ], "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" ] } |