Internet Connection Monitor

Internet Connection Monitor

Monitor and test Internet connectivity. Detect and log when Internet doesn't work even with operating LAN (Wi-Fi or Ethernet)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_internet_connection_monitor__",
  "description": "__MSG_internet_connection_monitor_description__",
  "short_name": "Internet Monitoring",
  "version": "5.1.3",
  "author": "dmishh",
  "offline_enabled": true,
  "icons": {
    "16": "images/favicon.png",
    "48": "images/favicon.png",
    "128": "images/favicon.png"
  },
  "permissions": [
    "offscreen",
    "storage",
    "unlimitedStorage"
  ],
  "minimum_chrome_version": "116",
  "background": {
    "service_worker": "service_worker.min.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "19": "images/default/online.png",
      "38": "images/default/[email protected]"
    },
    "default_title": "__MSG_internet_connection_monitor__",
    "default_popup": "popup.html"
  }
}