Youtube playlist search

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

Youtube playlist searchとは何ですか?

Youtube playlist searchはsviltodorovによって開発されたChromeの拡張機能で、その主な機能は「Search through your likes, or any public playlist on youtube.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Youtube playlist search拡張機能のCRXファイルをダウンロード

Youtube playlist search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Youtube playlist search Youtube playlist search
ID ihipnjaiklllcibgpddglkcmbidoilad
公式URL https://chrome.google.com/webstore/detail/youtube-playlist-search/ihipnjaiklllcibgpddglkcmbidoilad
説明 Search through your likes, or any public playlist on youtube.
ファイルサイズ 41.5 KB
インストール数 149
現在のバージョン 0.8
最終更新日 2015-05-03
公開日 2015-05-03
評価 1.56/5 合計 9 レビュー
開発者 sviltodorov
支払い方法 free
対応言語 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
}