YouTube Chronological Order
Watch all videos from a channel in chronological order
Qu'est-ce que YouTube Chronological Order ?
YouTube Chronological Order est une extension Chrome développée par Sleek Panther, et sa fonction principale est "Watch all videos from a channel in chronological order".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Chronological Order
Téléchargez les fichiers d'extension YouTube Chronological Order au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | bbceafimilifndeinlddcbfocipebfek |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-chronological-ord/bbceafimilifndeinlddcbfocipebfek |
Description | Watch all videos from a channel in chronological order |
Taille du Fichier | 5.72 MB |
Nombre d'Installations | 13,439 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2023-07-22 |
Date de Publication | 2020-04-09 |
Évaluation | 3.82/5 Total 106 Évaluations |
Développeur | Sleek Panther |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/SleekPanther/youtube-chronological-order |
URL de la Page d'Aide | https://github.com/SleekPanther/youtube-chronological-order/issues |
URL de la Page de Politique de Confidentialité | https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md |
Langues Prises en Charge | 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" } } |