Connectivity Checker
A connectivity checker that informs you when internet goes out by showing a little message on each tab
Cos'è Connectivity Checker?
Connectivity Checker è un'estensione di Chrome sviluppata da mail, e la sua funzione principale è "A connectivity checker that informs you when internet goes out by showing a little message on each tab".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Connectivity Checker
Scarica i file di estensione Connectivity Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | nbppecbhmichhmpoemgkkpefoaaoaioj |
URL Ufficiale | https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj |
Descrizione | A connectivity checker that informs you when internet goes out by showing a little message on each tab |
Dimensione del File | 55.58 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2019-07-13 |
Data di Pubblicazione | 2019-07-09 |
Sviluppatore | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://somesh.io |
Lingue Supportate | 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" ] } |