YouTube Timestamps to Playlist

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

YouTube Timestamps to Playlist là gì?

YouTube Timestamps to Playlist là một tiện ích mở rộng Chrome được phát triển bởi hagabaka, và tính năng chính của nó là "This extension creates a playlist from time tags on a YouTube page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Timestamps to Playlist

Tải xuống các tệp mở rộng YouTube Timestamps to Playlist dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Timestamps to Playlist YouTube Timestamps to Playlist
ID jmjgdfollcmomdjljhjkcenehcgbiogm
URL Chính Thức https://chromewebstore.google.com/detail/youtube-timestamps-to-pla/jmjgdfollcmomdjljhjkcenehcgbiogm
Mô tả This extension creates a playlist from time tags on a YouTube page
Kích Thước Tệp 375 KB
Số Lần Cài Đặt 271
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-11-27
Ngày Phát Hành 2017-11-27
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển hagabaka
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hagabaka/youtube-timestamps-to-playlist
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}