kukuluLIVE Notification for Chrome

kukuluLIVE Notification for Chrome

kukuluLIVE の放送開始をお知らせします。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "kukuluLIVE Notification for Chrome",
  "version": "3.1.0",
  "manifest_version": 3,
  "description": "kukuluLIVE の放送開始をお知らせします。",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://*.erinn.biz/live.mypage.php*"
      ],
      "all_frames": false,
      "js": [
        "disable_webpush.js"
      ]
    }
  ],
  "action": {
    "default_title": "kukuluLIVE Notification for Chrome",
    "default_icon": "img/icon48.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "icons": {
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "background",
    "notifications",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "*://*.erinn.biz/"
  ]
}