InstantQueue for Youtube

Quickest way to watch videos on Youtube!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "InstantQueue for Youtube",
  "description": "Quickest way to watch videos on Youtube!",
  "icons": {
    "128": "images/instant-queue.png"
  },
  "version": "0.1",
  "permissions": [
    "https://*.youtube.com/*",
    "http://*.youtube.com/*"
  ],
  "web_accessible_resources": [
    "images/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "http://*.youtube.com/*"
      ],
      "css": [
        "instant-queue.css"
      ],
      "js": [
        "underscore.js",
        "jquery.js",
        "sortable.js",
        "instant-queue.js"
      ]
    }
  ]
}