Youtube-Player

Youtube-Player

Simple to use Youtube video controller. - Control multiple playing videos from any tab. - Rewind, Play, Pause, Skip, Increment and Volume Controls available - Displays currently playing video, next upcoming video and the current running time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube-Player",
  "version": "0.32resigned1",
  "description": "Youtube video controller",
  "background": {
    "scripts": [
      "Scripts/BrowserMonitor.js"
    ]
  },
  "options_ui": {
    "page": "Settings/Options.html"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "Scripts/PageListener.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Scripts/KeyListener.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/play_48.png",
    "default_title": "Youtube Controller",
    "default_popup": "Pages/YCtrl.html"
  }
}