Duration Sort for YouTube Subscriptions
Adds a button to re-sort YouTube subscriptions by their duration.
Qu'est-ce que Duration Sort for YouTube Subscriptions ?
Duration Sort for YouTube Subscriptions est une extension Chrome développée par Evan Kohilas, et sa fonction principale est "Adds a button to re-sort YouTube subscriptions by their duration.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Duration Sort for YouTube Subscriptions
Téléchargez les fichiers d'extension Duration Sort for YouTube Subscriptions 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
If you've ever wanted to navigate through your YouTube subscription feed by video duration, this extension will let you do that through a native sorting button.
Informations de Base sur l'Extension
Nom | |
ID | ogelmlojlklfapffhdeelmfpkpdbocha |
URL Officiel | https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha |
Description | Adds a button to re-sort YouTube subscriptions by their duration. |
Taille du Fichier | 27.18 KB |
Nombre d'Installations | 95 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2021-03-24 |
Date de Publication | 2021-03-23 |
Évaluation | 2.33/5 Total 3 Évaluations |
Développeur | Evan Kohilas |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ekohilas/youtube-duration-sort |
Langues Prises en Charge | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duration Sort for YouTube Subscriptions", "short_name": "Duration Sort", "description": "Adds a button to re-sort YouTube subscriptions by their duration.", "version": "0.1.0", "manifest_version": 3, "author": { "name": "Evan Kohilas", "url": "https:\/\/github.com\/ekohilas\/youtube-duration-sort" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/feed\/subscriptions" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" } }, "icons": { "16": "\/images\/icon_16.png", "32": "\/images\/icon_32.png", "48": "\/images\/icon_48.png", "128": "\/images\/icon_128.png" }, "options_page": "options.html" } |