Connectivity Checker
A connectivity checker that informs you when internet goes out by showing a little message on each tab
什么是Connectivity Checker?
Connectivity Checker是由mail开发的Chrome扩展程序,该扩展的主要功能是“A connectivity checker that informs you when internet goes out by showing a little message on each tab”。
扩展截图
下载Connectivity Checker扩展crx文件
下载Connectivity Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple tool that keeps a track of whether the internet is connected and lets you know when it goes down. Also detects captive portals 扩展基本信息
| 名称 | |
| ID | nbppecbhmichhmpoemgkkpefoaaoaioj |
| 官方URL | https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj |
| 简介 | A connectivity checker that informs you when internet goes out by showing a little message on each tab |
| 文件大小 | 55.58 KB |
| 安装次数 | 23 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2019-07-13 |
| 上架时间 | 2019-07-09 |
| 开发者 | |
| 付费类型 | free |
| 扩展官网 | https://somesh.io |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "0.0.1",
"name": "Connectivity Checker",
"description": "A connectivity checker that informs you when internet goes out by showing a little message on each tab",
"browser_action": {
"default_icon": {
"16": "icons\/wifi-16.png",
"32": "icons\/wifi-32.png",
"64": "icons\/wifi-64.png",
"128": "icons\/wifi-128.png"
},
"default_title": "Connectivity Checker",
"default_popup": "src\/popup.html"
},
"icons": {
"16": "icons\/wifi-16.png",
"32": "icons\/wifi-32.png",
"64": "icons\/wifi-64.png",
"128": "icons\/wifi-128.png"
},
"background": {
"persistent": true,
"scripts": [
"src\/background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/",
"https:\/\/*\/*"
],
"js": [
"jquery.js",
"src\/content.js"
],
"css": [
"src\/content.css"
]
}
],
"permissions": [
"activeTab"
]
} | |