Tabs Playlist for Youtube

Simply manage your "playlist" by ordering your youtube tabs.

什么是Tabs Playlist for Youtube?

Tabs Playlist for Youtube是由Matthis de Wit开发的Chrome扩展程序,该扩展的主要功能是“Simply manage your "playlist" by ordering your youtube tabs.”。

扩展截图

screenshot

下载Tabs Playlist for Youtube扩展crx文件

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

扩展使用说明

                        Install:

Add te extension to Google Chrome and reload all your Youtube tabs.

Usage:

1. Open one Youtube video tab, the video starts playing automatically (as usual)

2. Other Youtube video tabs will be paused when loaded

3. When the 1st Youtube tab is almost done, it will crossfade with the next Youtube tab. When you play another Youtube tab, all other Youtube tabs will be paused.

Known bugs:

Occassionally a video is not automatically paused, working on this...                    

扩展基本信息

名称 Tabs Playlist for Youtube Tabs Playlist for Youtube
ID naplcmgdmolcljbkjajgdnlpfjcdclpi
官方URL https://chrome.google.com/webstore/detail/tabs-playlist-for-youtube/naplcmgdmolcljbkjajgdnlpfjcdclpi
简介 Simply manage your "playlist" by ordering your youtube tabs.
文件大小 72.74 KB
安装次数 311
当前版本 0.0.1.0
更新时间 2013-11-15
上架时间 2013-11-15
评分 2.80/5 共15次评分
开发者 Matthis de Wit
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Playlist for Youtube",
    "short_name": "TabPlaylistr",
    "version": "0.0.1.0",
    "manifest_version": 2,
    "description": "Simply manage your \"playlist\" by ordering your youtube tabs.",
    "icons": {
        "16": "image16.png",
        "48": "image48.png",
        "128": "image128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/watch?*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch?*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "jquery.js",
        "youtube.js",
        "jquery.min.map"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/watch?*"
        ],
        "ids": [
            "*"
        ],
        "accepts_tls_channel_id": false
    },
    "page_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Tabs Playlist for Youtube - enabled"
    }
}