Examine source code of 別窓くん(ニコ生 多窓サポート)

Inspect and view changes in 別窓くん(ニコ生 多窓サポート) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "別窓くん(ニコ生 多窓サポート)",
  "description": "ニコニコ生放送の番組を別窓で開くためのChrome機能拡張です。",
  "version": "1.4.1",
  "author": "MynicoTools",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://live.nicovideo.jp/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://live.nicovideo.jp/watch/*"
      ],
      "js": [
        "watch.js"
      ],
      "css": [
        "watch.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}