ニコニコ動画プレイヤー拡張

ニコニコ動画プレイヤー拡張

ニコニコ動画のHTML5プレイヤーを拡張します

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ニコニコ動画プレイヤー拡張",
  "version": "1.0",
  "description": "ニコニコ動画のHTML5プレイヤーを拡張します",
  "browser_action": {},
  "permissions": [],
  "icons": {},
  "homepage_url": "https://github.com/abouthiroppy/niconico-player-extension",
  "content_scripts": [
    {
      "matches": [
        "http://www.nicovideo.jp/watch/*"
      ],
      "js": [
        "./index.js"
      ],
      "run_at": "document_end"
    }
  ]
}