ニコ生拡張機能 へもツール

ニコ生拡張機能 へもツール

ニコ生にコメビュ機能、録画機能、PIP、コメント読み上げ機能、シークバーOFF機能、ニコ生ゲーム音ミュート、映像加工、などなどの拡張機能を追加します

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ニコ生拡張機能 へもツール",
  "manifest_version": 3,
  "version": "0.37.2",
  "description": "ニコ生にコメビュ機能、録画機能、PIP、コメント読み上げ機能、シークバーOFF機能、ニコ生ゲーム音ミュート、映像加工、などなどの拡張機能を追加します",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tts"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/js/comeview-inject.js",
        "/js/nicovideo-inject.js",
        "/js/lib/encode-worker.js",
        "/js/lib/mp4-muxer.min.js",
        "/html/parts-menu.html",
        "/html/info.html",
        "/img/*"
      ],
      "matches": [
        "https://live.nicovideo.jp/*"
      ]
    },
    {
      "resources": [
        "/js/akashic-inject.js"
      ],
      "matches": [
        "https://ak.cdn.nimg.jp/*"
      ],
      "all_frames": true
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://live.nicovideo.jp/*",
        "https://ak.cdn.nimg.jp/*"
      ],
      "js": [
        "/js/main.js",
        "/js/comeview.js",
        "/js/yomiage.js",
        "/js/seekbar.js",
        "/js/video.js",
        "/js/game.js",
        "/js/rightClick.js",
        "/js/lib/encode-worker.js",
        "/js/lib/mp4-muxer.min.js",
        "/js/pip.js",
        "/js/akashic.js",
        "/js/other.js"
      ],
      "css": [
        "/css/style.css"
      ]
    }
  ]
}