InstantQueue for Youtube

InstantQueue for Youtube

Quickest way to watch videos on Youtube!

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}