YouTube Chronological Order
Watch all videos from a channel in chronological order
YouTube Chronological Orderคืออะไร?
YouTube Chronological Order เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sleek Panther และคุณลักษณะหลักของมันคือ "Watch all videos from a channel in chronological order"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Chronological Order
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |