Quick Playlist

Quick Playlist

Quick Play List (QPL) for YouTube allows you to create a quick play list from your favourite YouTube videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/ico_24.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "content.js"
      ],
      "matches": [
        "http://www.youtube.com/*",
        "https://www.youtube.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "description": "Quick Play List (QPL) for YouTube allows you to create a quick play list from your favourite YouTube videos",
  "icons": {
    "16": "img/ico_16.png",
    "48": "img/ico_48.png",
    "128": "img/ico_128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApvpdncmNtm+iIzz9oktfHLpcOFgS1agSj3dwK52pD6czjOPHayW5Rzex8WDKfu4Q6pWZXfZvtULSYWrcKHHcMi0lx/m9M8sy+rFZ22R2QhODo7brTd1u+grZ/i/3jqcXFxU4KSIthoe98A3YvNqf/jf3SWUVdre+K+UFUjhG7LcqVam2t8wM6o8Xnzp0LKuFCliB9DKw7qXnKZJ0YYJ6ZUj3fg+txzef4SL0KUf+++cM2zVVdz1sMHZyMlrrBNEo1BUsvUSOHIOGELUzYShiolFZ5jlG1pygsS9U4wRKIRZmCZ9texZcffQENTUZ7OqVGR/ZaiO6SWQSXd7zjY6wnQIDAQAB",
  "manifest_version": 2,
  "name": "Quick Playlist",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "notifications"
  ],
  "short_name": "QPL",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.2",
  "web_accessible_resources": [
    "img/button_add.png",
    "content.js"
  ]
}