Event Tracker

Event Tracker

Helps manage events and get notified ... in short an event planner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Helps manage events and get notified ... in short an event planner.",
  "manifest_version": 3,
  "name": "Event Tracker",
  "version": "1.0.1",
  "homepage_url": "https://vinodsebastian.com/eventtracker/",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "action": {
    "default_title": "Event Tracker",
    "default_popup": "eventtracker.html",
    "default_icon": {
      "32": "icons/icon-32.png"
    }
  },
  "permissions": [
    "storage",
    "notifications",
    "background",
    "alarms"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon.jpg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}