Youtube playlist search

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

What is Youtube playlist search?

Youtube playlist search is a Chrome extension developed by sviltodorov, and its main feature is "Search through your likes, or any public playlist on youtube.".

Extension Screenshots

screenshot
screenshot

Download Youtube playlist search Extension CRX File

Download Youtube playlist search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Easily search through your likes, or any public playlist on youtube.                    

Extension Basic Information

Name Youtube playlist search Youtube playlist search
ID ihipnjaiklllcibgpddglkcmbidoilad
Official URL https://chrome.google.com/webstore/detail/youtube-playlist-search/ihipnjaiklllcibgpddglkcmbidoilad
Description Search through your likes, or any public playlist on youtube.
File Size 41.5 KB
Installation Count 149
Current Version 0.8
Last Updated 2015-05-03
Publish Date 2015-05-03
Rating 1.56/5 Total 9 Ratings
Developer sviltodorov
Payment Type free
Supported Languages en
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
}