動画プレイヤー補助

動画プレイヤー補助

<video>動画を再生した時にコントローラーを補助する

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "動画プレイヤー補助",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "<video>動画を再生した時にコントローラーを補助する",
  "permissions": [
    "contextMenus",
    "activeTab"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*.mp4",
        "file:///*.mp4"
      ],
      "js": [
        "VideoPlayerController.js"
      ]
    }
  ]
}