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”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | bbceafimilifndeinlddcbfocipebfek |
官方網址 | 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" } } |