Chrome Playlist

Make a playlist of youtube videos based on a bookmark folder.

什么是Chrome Playlist?

Chrome Playlist是由Bryan Chen开发的Chrome扩展程序,该扩展的主要功能是“Make a playlist of youtube videos based on a bookmark folder.”。

扩展截图

screenshot

下载Chrome Playlist扩展crx文件

下载Chrome Playlist扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Select a bookmark folder containing lots of youtube links through the pop-up interface and then click play! A new tab will open that automatically cycles through the bookmarked videos in the folder as they end, acting as a custom playlist through youtube. You can use the popup to skip to a new randomly selected song as well.                    

扩展基本信息

名称 Chrome Playlist Chrome Playlist
ID dnodaodnfnledpfmlflemmimlpebigbc
官方URL https://chromewebstore.google.com/detail/chrome-playlist/dnodaodnfnledpfmlflemmimlpebigbc
简介 Make a playlist of youtube videos based on a bookmark folder.
文件大小 41.46 KB
安装次数 91
当前版本 1.0.3
更新时间 2019-04-26
上架时间 2019-04-26
开发者 Bryan Chen
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.0.3",
    "name": "Chrome Playlist",
    "description": "Make a playlist of youtube videos based on a bookmark folder.",
    "icons": {
        "16": "images\/note16.png",
        "48": "images\/note48.png",
        "128": "images\/note128.png"
    },
    "browser_action": {
        "default_icon": "images\/note128.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "tabs",
        "bookmarks",
        "https:\/\/www.youtube.com\/*"
    ]
}