Connectivity Checker

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

O que é Connectivity Checker?

Connectivity Checker é uma extensão do Chrome desenvolvida por mail, e sua principal característica é "A connectivity checker that informs you when internet goes out by showing a little message on each tab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Connectivity Checker

Baixe arquivos de extensão Connectivity Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Connectivity Checker Connectivity Checker
ID nbppecbhmichhmpoemgkkpefoaaoaioj
URL Oficial https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj
Descrição A connectivity checker that informs you when internet goes out by showing a little message on each tab
Tamanho do Arquivo 55.58 KB
Contagem de Instalações 23
Versão Atual 0.0.1
Última Atualização 2019-07-13
Data de Publicação 2019-07-09
Desenvolvedor mail
Tipo de Pagamento free
Site da Extensão https://somesh.io
Idiomas Suportados 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"
    ]
}