YouTube Real Time Playlist

Simply choose your next video to be played and let the RT playlist handle it!

YouTube Real Time Playlist là gì?

YouTube Real Time Playlist là một tiện ích mở rộng Chrome được phát triển bởi Michal Bukovy, và tính năng chính của nó là "Simply choose your next video to be played and let the RT playlist handle it!".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng YouTube Real Time 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

                        This extension creates one global playlist, synchronized across all your tabs.

Add some video to RT playlist simply by clicking Add button next to each video thumbnail and it's going to play automatically right after your currently playing video. Add another, and another video and make your own playlist, while you're still browsing Youtube. Add button is available on every thumbnail, anywhere on Youtube.

You can reorder or remove your items and make an immediate impact on your video queue.

A great Quick search feature is available. Search youtube videos more quickly and comfortable directly in "Up Next" section.

NEW FEATURE: Skip the ads automatically as soon as "Skip Ad" button appears.

I hope you enjoy this little extension as much as I do :-)                    

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

Tên YouTube Real Time Playlist YouTube Real Time Playlist
ID oblljodddjemphcphienneigmlhhchdm
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-real-time-playlis/oblljodddjemphcphienneigmlhhchdm
Mô tả Simply choose your next video to be played and let the RT playlist handle it!
Kích Thước Tệp 249 KB
Số Lần Cài Đặt 2,000
Phiên Bản Hiện Tại 1.5.0
Cập Nhật Lần Cuối 2019-11-09
Ngày Phát Hành 2019-11-09
Đánh Giá 4.58/5 Tổng số 92 Đánh Giá
Nhà Phát Triển Michal Bukovy
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Real Time Playlist",
    "version": "1.5.0",
    "description": "Simply choose your next video to be played and let the RT playlist handle it!",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "author": "Michal Bukovy",
    "short_name": "RT Playlist",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "http:\/\/youtube.com\/*",
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "main.js",
                "search.js",
                "search_new.js",
                "jquery-3.2.1.min.js",
                "jquery-ui.min.js",
                "vue.min.js",
                "Sortable.min.js",
                "vuedraggable.min.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "video.js",
        "remove.png",
        "show.png",
        "hide.png",
        "settings.png",
        "play.png",
        "pause.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/mbukovy.eu; object-src 'self'",
    "permissions": [
        "storage",
        "https:\/\/mbukovy.eu\/rtplaylist\/*"
    ],
    "minimum_chrome_version": "45"
}