Youtube playlist search

Youtube playlist search

Search through your likes, or any public playlist on youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Youtube playlist search",
  "version": "0.8",
  "description": "Search through your likes, or any public playlist on youtube.",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "https://ajax.googleapis.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*"
      ],
      "js": [
        "js/jquery-2.1.3.min.js",
        "js/fuse.min.js",
        "js/main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "manifest_version": 2
}