Connectivity Checker

A connectivity checker that informs you when internet goes out by showing a little message on each tab

Connectivity Checker là gì?

Connectivity Checker là một tiện ích mở rộng Chrome được phát triển bởi mail, và tính năng chính của nó là "A connectivity checker that informs you when internet goes out by showing a little message on each tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Connectivity Checker

Tải xuống các tệp mở rộng Connectivity Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Connectivity Checker Connectivity Checker
ID nbppecbhmichhmpoemgkkpefoaaoaioj
URL Chính Thức https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj
Mô tả A connectivity checker that informs you when internet goes out by showing a little message on each tab
Kích Thước Tệp 55.58 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2019-07-13
Ngày Phát Hành 2019-07-09
Nhà Phát Triển mail
Loại Thanh Toán free
Trang Web Mở Rộng https://somesh.io
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}