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

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Connectivity Checker Connectivity Checker
ID nbppecbhmichhmpoemgkkpefoaaoaioj
官方網址 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
開發者 mail
付費類型 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"
    ]
}