YouTube Chronological Order

Watch all videos from a channel in chronological order

什么是YouTube Chronological Order?

YouTube Chronological Order是由Sleek Panther开发的Chrome扩展程序,该扩展的主要功能是“Watch all videos from a channel in chronological order”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Chronological Order扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 YouTube Chronological Order YouTube Chronological Order
ID bbceafimilifndeinlddcbfocipebfek
官方URL https://chrome.google.com/webstore/detail/youtube-chronological-ord/bbceafimilifndeinlddcbfocipebfek
简介 Watch all videos from a channel in chronological order
文件大小 5.72 MB
安装次数 13,439
当前版本 1.0.3
更新时间 2023-07-22
上架时间 2020-04-09
评分 3.82/5 共106次评分
开发者 Sleek Panther
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/SleekPanther/youtube-chronological-order
帮助页面URL https://github.com/SleekPanther/youtube-chronological-order/issues
隐私政策页面URL https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
支持的语言 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"
    }
}