NAVER WORKS Calendar Notifier

NAVER WORKS Calendar Notifier

This extension sends notifications to you at your meeting schedule.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NAVER WORKS Calendar Notifier",
  "description": "This extension sends notifications to you at your meeting schedule.",
  "version": "1.3.3",
  "action": {
    "default_popup": "dist/index.html",
    "default_icon": "asset/icons8-calendar-96.png"
  },
  "icons": {
    "96": "asset/icons8-calendar-96.png",
    "128": "asset/icons8-calendar-128.png"
  },
  "permissions": [
    "alarms",
    "notifications",
    "storage",
    "offscreen"
  ],
  "content_scripts": [
    {
      "js": [
        "dist/content.js"
      ],
      "matches": [
        "https://*.calendar.worksmobile.com/main*",
        "https://*.calendar.navercorp.com/main*"
      ],
      "runAt": "document_idle"
    }
  ],
  "background": {
    "service_worker": "dist/background.js"
  }
}