YouTube Timestamps to Playlist

This extension creates a playlist from time tags on a YouTube page

什么是YouTube Timestamps to Playlist?

YouTube Timestamps to Playlist是由hagabaka开发的Chrome扩展程序,该扩展的主要功能是“This extension creates a playlist from time tags on a YouTube page”。

扩展截图

screenshot

下载YouTube Timestamps to Playlist扩展crx文件

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

扩展使用说明

                        When viewing a video on YouTube containing multiple songs, this extension looks for a list of "time tags", for example "0:40 Symphony No. 5 in C Minor", and builds a playlist. You can open the playlist with one click, and easily change to a different song or seek within the song. It also displays a notification when a new song starts playing.                    

扩展基本信息

名称 YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
官方URL https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
简介 This extension creates a playlist from time tags on a YouTube page
文件大小 375 KB
安装次数 271
当前版本 1.1
更新时间 2017-11-27
上架时间 2017-11-27
评分 3.00/5 共2次评分
开发者 hagabaka
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/hagabaka/youtube-timestamps-to-playlist
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Timestamps to Playlist",
    "description": "This extension creates a playlist from time tags on a YouTube page",
    "version": "1.1",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon48.png",
        "default_title": "Playlist",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "common.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "notifications"
    ]
}