IP Show - Shows external IP, country, quality
Shows external IP, its quality and country. Real time fixing of the external IP change.
IP Show - Shows external IP, country, quality란 무엇입니까?
IP Show - Shows external IP, country, quality은(는) RAWIRA LTD에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows external IP, its quality and country. Real time fixing of the external IP change."입니다.
확장 프로그램 스크린샷
IP Show - Shows external IP, country, quality 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The extension conveniently displays the external IP, its country and quality (data center, proxy / vpn service, presence in black lists, etc.). When the external IP changes, it is shown a message about that. The extension allows to control working with websites that are sensitive to IP changes. Please note that you can configure hotkeys to: - display the extension settings window - hide / show information window - minimize / maximize information window
확장 프로그램 기본 정보
이름 | |
ID | ikbpjhjmjhlnfdgfmglfohmcpmngmmkc |
공식 URL | https://chrome.google.com/webstore/detail/ip-show-shows-external-ip/ikbpjhjmjhlnfdgfmglfohmcpmngmmkc |
설명 | Shows external IP, its quality and country. Real time fixing of the external IP change. |
파일 크기 | 360 KB |
설치 횟수 | 34 |
현재 버전 | 3.0.7 |
최근 업데이트 | 2021-05-26 |
출시 날짜 | 2020-12-23 |
평점 | 4.89/5 총 9 개의 평점 |
개발자 | RAWIRA LTD |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://rawira.ua/privacy.html |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "IP Show - Shows external IP, country, quality", "version": "3.0.7", "content_scripts": [ { "all_frames": true, "js": [ "Profile.js", "index.js", "options.js" ], "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Shows external IP, its quality and country. Real time fixing of the external IP change.", "icons": { "128": "data\/icons\/128.png", "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs", "storage", "webRequest", "webRequestBlocking" ], "background": { "scripts": [ "Profile.js", "bgp.js" ], "persistent": true }, "browser_action": { "default_title": "IP Show - Shows external IP, country, IP quality", "default_icon": "data\/icons\/128.png", "default_popup": "options.html" }, "short_name": "IPShow", "options_ui": { "page": "options.html", "open_in_tab": true }, "commands": { "_execute_browser_action": { "description": "__MSG_commandOpenPopup__", "suggested_key": { "default": "Ctrl+Shift+I", "mac": "Command+Shift+I" } }, "show_or_hide_badge": { "description": "__MSG_commandTogleBadge__", "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" } }, "minimize_maximize_badge": { "description": "__MSG_commandMinMaxBadge__", "suggested_key": { "default": "Ctrl+Shift+M", "mac": "Command+Shift+M" } } }, "default_locale": "en", "web_accessible_resources": [ "flags\/*.*" ] } |