Youtube™ Controller

Youtube™ Controller

Control Youtube™ videos from any web page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "author": "Maroun Baydoun",
  "version": "2.1.0",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "icons": {
    "32": "icon-small.png",
    "64": "icon-medium.png",
    "128": "icon-large.png",
    "256": "icon.png"
  },
  "permissions": [
    "tabs",
    "*://*.youtube.com/*"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "commands": {
    "toggle-video-1": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Toggle first video",
      "global": true
    },
    "toggle-video-2": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Toggle second video",
      "global": true
    }
  }
}