백준 알람(BOJ Alarm)

백준 알람(BOJ Alarm)

채점이 완료되면 알림을 띄워줘요!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "백준 알람(BOJ Alarm)",
  "description": "채점이 완료되면 알림을 띄워줘요!",
  "version": "1.0.3",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://www.acmicpc.net/submit/*"
      ],
      "js": [
        "flag-change.js"
      ]
    },
    {
      "matches": [
        "https://www.acmicpc.net/status?*"
      ],
      "js": [
        "get-data-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "icons": {
    "16": "/icon.png",
    "32": "/icon.png",
    "48": "/icon.png",
    "128": "/icon.png"
  }
}