Youtube Controller

Youtube Controller

This extension allows you to control youtube player directly from tray (or with media keys).

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Youtube Controller",
  "description": "This extension allows you to control youtube player directly from tray (or with media keys).",
  "version": "0.4.7",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.youtube.com/*",
        "http://youtube.com/*",
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/note_19.png"
  },
  "web_accessible_resources": [
    "content_script.js"
  ],
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "img/note_48.png",
    "128": "img/note_128.png"
  }
}