Connectivity Checker
A connectivity checker that informs you when internet goes out by showing a little message on each tab
What is Connectivity Checker?
Connectivity Checker is a Chrome extension developed by mail, and its main feature is "A connectivity checker that informs you when internet goes out by showing a little message on each tab".
Extension Screenshots
Download Connectivity Checker Extension CRX File
Download Connectivity Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | nbppecbhmichhmpoemgkkpefoaaoaioj |
Official URL | https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj |
Description | A connectivity checker that informs you when internet goes out by showing a little message on each tab |
File Size | 55.58 KB |
Installation Count | 23 |
Current Version | 0.0.1 |
Last Updated | 2019-07-13 |
Publish Date | 2019-07-09 |
Developer | |
Payment Type | free |
Extension Website | https://somesh.io |
Supported Languages | 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" ] } |