Public IP Change Notification

Public IP Change Notification

Set an IP and get notified if your public IP differs. Useful to stay informed about network changes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Public IP Change Notification",
  "version": "0.1.1",
  "author": "[email protected]",
  "description": "Set an IP and get notified if your public IP differs. Useful to stay informed about network changes.",
  "icons": {
    "16": "assets/16w/orange.png",
    "48": "assets/48w/orange.png",
    "128": "assets/128w/orange.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/16w/orange.png",
      "48": "assets/48w/orange.png",
      "128": "assets/128w/orange.png"
    },
    "default_title": "Click to see current status, set your default IP and mute alarm",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/eventPage.js"
    ],
    "persistend": "false"
  },
  "offline_enabled": false,
  "permissions": [
    "storage",
    "alarms"
  ]
}