Network Information
Useful information about your system's connection including, type, speed, and rtt.
Network Information란 무엇입니까?
Network Information은(는) Keller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Useful information about your system's connection including, type, speed, and rtt."입니다.
확장 프로그램 스크린샷
Network Information 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Network Information is an extension that provides information about your system's connection. It is working based on a new JavaScript API called "navigator.connection". When you open the toolbar popup UI, there is a big speed gauge at the top center which shows the "downlink" speed for your browser. This speed refers to the estimated bandwidth in megabits per second (not related to the current internet speed). Other metrics for the network information API are connection type and round trip time (rtt). There is a reload button at the top right corner of the screen which is for reloading the app UI. There is also a wifi icon at the middle right section of the screen which shows the online or offline status of your browser. If you found a bug to report, or have a feature request in mind, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/network-information.html).
확장 프로그램 기본 정보
이름 | Network Information |
ID | aplgkncdgdlldhcghahpnlkokohpinfg |
공식 URL | https://chromewebstore.google.com/detail/network-information/aplgkncdgdlldhcghahpnlkokohpinfg |
설명 | Useful information about your system's connection including, type, speed, and rtt. |
파일 크기 | 32.41 KB |
설치 횟수 | 1,974 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2023-11-06 |
출시 날짜 | 2019-12-09 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | Keller |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mybrowseraddon.com/network-information.html |
도움말 페이지 URL | https://mybrowseraddon.com/network-information.html |
개인정보 보호 정책 페이지 URL | https://mybrowseraddon.com/privacy-policy/keller.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.2", "manifest_version": 3, "offline_enabled": true, "permissions": [ "storage" ], "name": "Network Information", "homepage_url": "https:\/\/mybrowseraddon.com\/network-information.html", "description": "Useful information about your system's connection including, type, speed, and rtt.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Network Information", "default_popup": "data\/interface\/index.html?popup", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "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" } } |