Server IP
Displays server IP address on every website
Server IP란 무엇입니까?
Server IP은(는) yokris.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays server IP address on every website"입니다.
확장 프로그램 스크린샷
Server IP 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The "Server IP" extension adds a small box to each visited page to display the country flag depicting the location of the current website's server and provides a multitude of tools such as whois, Geolocation, and domain information on click. Knowing the server's physical location adds an extra layer of awareness to your browsing and can be useful to indicate the native languages and legal jurisdictions that may apply. Additional information on the server is accessible by clicking on the shown IP address. Features: 1. Converts IP to Flag without resorting to an external server. It works completely offline 2. Provides more info about the IP address on a click 3. Flag's position can be altered by dragging and dropping it to a new location. 4. Uses an up-to-date offline MaxMind database to convert IP addresses to country. 5. Periodically updates the database from GitHub 6. Works on manifest v3 (the extension idles when it is not active, so it does not use any resources when not needed) -- If you prefer the flag to appear in your action area, try: https://chrome.google.com/webstore/detail/country-flags-ip-whois/bffjckjhidlcnenenacdahhpbacpgapo
확장 프로그램 기본 정보
이름 | Server IP |
ID | adcbaggcjppnkmhfmjcdgagmggnfeikh |
공식 URL | https://chromewebstore.google.com/detail/server-ip/adcbaggcjppnkmhfmjcdgagmggnfeikh |
설명 | Displays server IP address on every website |
파일 크기 | 3.24 MB |
설치 횟수 | 4,350 |
현재 버전 | 0.2.4 |
최근 업데이트 | 2024-01-15 |
출시 날짜 | 2020-02-14 |
평점 | 4.14/5 총 7 개의 평점 |
개발자 | yokris.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://webextension.org/listing/country-flags.html?from=server-ip |
도움말 페이지 URL | https://webextension.org/listing/country-flags.html?from=server-ip |
개인정보 보호 정책 페이지 URL | https://add0n.com/policies/yokris.dev.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Server IP", "description": "Displays server IP address on every website", "version": "0.2.4", "manifest_version": 3, "permissions": [ "storage", "webRequest", "scripting", "alarms" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "worker.js" }, "homepage_url": "https:\/\/webextension.org\/listing\/country-flags.html?from=server-ip", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_start", "js": [ "data\/verify.js" ] } ], "options_ui": { "page": "data\/options\/index.html" }, "web_accessible_resources": [ { "resources": [ "data\/ip\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |