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.”。

扩展截图

screenshot

下载Network Information扩展crx文件

下载Network Information扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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"
    }
}