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"
    ]
}