Examine source code of GeoNotify

Inspect and view changes in GeoNotify source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GeoNotify",
  "version": "1.0",
  "description": "Notifica cuando hay registros en la tabla y geo-posiciona puntos en mapas",
  "permissions": [
    "activeTab",
    "storage",
    "notifications"
  ],
  "host_permissions": [
    "https://portal.mobicua.cl/alert/list/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://portal.mobicua.cl/alert/list/",
        "https://portal.mobicua.cl/report/alerts/"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  }
}