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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | https://github.com/SleekPanther/youtube-chronological-order/issues |
عنوان صفحة سياسة الخصوصية | 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" } } |