YouTube Playlist

This extension transforms a youtube page that contains a video with multiple songs into a playlist

YouTube Playlistとは何ですか?

YouTube PlaylistはIvan Chubによって開発されたChromeの拡張機能で、その主な機能は「This extension transforms a youtube page that contains a video with multiple songs into a playlist」です。

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

screenshot

YouTube Playlist拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        If you would like to contribute, go here: https://github.com/ichub/youtube-playlist                    

拡張機能の基本情報

名前 YouTube Playlist YouTube Playlist
ID fpekldclcjpekfidkgfbgpffhbholbnd
公式URL https://chrome.google.com/webstore/detail/youtube-playlist/fpekldclcjpekfidkgfbgpffhbholbnd
説明 This extension transforms a youtube page that contains a video with multiple songs into a playlist
ファイルサイズ 34.28 KB
インストール数 237
現在のバージョン 1.0
最終更新日 2015-08-04
公開日 2015-08-04
評価 3.25/5 合計 4 レビュー
開発者 Ivan Chub
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Playlist",
    "description": "This extension transforms a youtube page that contains a video with multiple songs into a playlist",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "injected.css"
            ],
            "js": [
                "jquery.min.js",
                "injected.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "injected.html"
    ]
}