Connectivity Checker
A connectivity checker that informs you when internet goes out by showing a little message on each tab
Was ist Connectivity Checker?
Connectivity Checker ist eine Chrome-Erweiterung, die von mail entwickelt wurde, und ihr Hauptmerkmal ist "A connectivity checker that informs you when internet goes out by showing a little message on each tab".
Erweiterungsscreenshots
Connectivity Checker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Connectivity Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nbppecbhmichhmpoemgkkpefoaaoaioj |
| Offizielle URL | https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj |
| Beschreibung | A connectivity checker that informs you when internet goes out by showing a little message on each tab |
| Dateigröße | 55.58 KB |
| Installationsanzahl | 23 |
| Aktuelle Version | 0.0.1 |
| Letztes Update | 2019-07-13 |
| Veröffentlichungsdatum | 2019-07-09 |
| Entwickler | |
| Zahlungsart | free |
| Erweiterungswebsite | https://somesh.io |
| Unterstützte Sprachen | 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"
]
} | |