YouTube Chronological Order

Watch all videos from a channel in chronological order

YouTube Chronological Order là gì?

YouTube Chronological Order là một tiện ích mở rộng Chrome được phát triển bởi Sleek Panther, và tính năng chính của nó là "Watch all videos from a channel in chronological order".

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

screenshot
screenshot
screenshot

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

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

                        Intended to help you binge all the videos from a channel oldest to newest easily & simply

1) Go to the Videos tab of a channel
2) Sort by "Date added (oldest)"
3) Play the oldest video
4) Click the extension icon or Alt+P keyboard shortcut

This gets you to YouTube's auto-generated User List playlist in chronological order.

Don't worry if the current video number is always 20 or doesn't look right, it will still play oldest to newest.                    

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

Tên YouTube Chronological Order YouTube Chronological Order
ID bbceafimilifndeinlddcbfocipebfek
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-chronological-ord/bbceafimilifndeinlddcbfocipebfek
Mô tả Watch all videos from a channel in chronological order
Kích Thước Tệp 5.72 MB
Số Lần Cài Đặt 13,439
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-07-22
Ngày Phát Hành 2020-04-09
Đánh Giá 3.82/5 Tổng số 106 Đánh Giá
Nhà Phát Triển Sleek Panther
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SleekPanther/youtube-chronological-order
URL Trang Trợ Giúp https://github.com/SleekPanther/youtube-chronological-order/issues
URL Trang Chính Sách Bảo Mật https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Chronological Order",
    "description": "Watch all videos from a channel in chronological order",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "page_action": {
        "default_icon": "assets\/icons\/chronological-icon-16.png",
        "default_title": "Alt+P (Create oldest to newest playlist)"
    },
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "appendToUrl": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Create oldest to newest playlist"
        }
    },
    "icons": {
        "16": "assets\/icons\/chronological-icon-16.png",
        "48": "assets\/icons\/chronological-icon-48.png",
        "128": "assets\/icons\/chronological-icon-128.png"
    }
}