ニコ生アラート

ニコ生アラート

ニコニコ生放送の放送アラートと自動入場が可能になります。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ニコ生アラート",
  "version": "2.1.0",
  "manifest_version": 3,
  "description": "ニコニコ生放送の放送アラートと自動入場が可能になります。",
  "icons": {
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "permissions": [
    "storage",
    "offscreen",
    "notifications"
  ],
  "host_permissions": [
    "https://live.nicovideo.jp/watch/*",
    "https://secure-dcdn.cdn.nimg.jp/*",
    "https://api.live2.nicovideo.jp/*"
  ],
  "content_scripts": [
    {
      "js": [
        "./content.js"
      ],
      "css": [
        "./css/content.css"
      ],
      "matches": [
        "https://live.nicovideo.jp/watch/*",
        "https://www.nicovideo.jp/my/follow*",
        "https://www.nicovideo.jp/user/*",
        "https://ch.nicovideo.jp/*"
      ]
    }
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "options_ui": {
    "page": "./html/option.html"
  },
  "action": {
    "default_popup": "./html/popup.html"
  }
}