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
官方網址 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"
    ]
}