Duration Sort for YouTube Subscriptions
Adds a button to re-sort YouTube subscriptions by their duration.
Hvad er Duration Sort for YouTube Subscriptions?
Duration Sort for YouTube Subscriptions er en Chrome-udvidelse udviklet af Evan Kohilas, og dens hovedfunktion er "Adds a button to re-sort YouTube subscriptions by their duration.".
Udvidelsesskærmbilleder
Download Duration Sort for YouTube Subscriptions-udvidelses-CRX-fil
Download Duration Sort for YouTube Subscriptions-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | ogelmlojlklfapffhdeelmfpkpdbocha |
| Officiel URL | https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha |
| Beskrivelse | Adds a button to re-sort YouTube subscriptions by their duration. |
| Filstørrelse | 27.18 KB |
| Antal Installationer | 95 |
| Nuværende Version | 0.1.0 |
| Senest Opdateret | 2021-03-24 |
| Udgivelsesdato | 2021-03-23 |
| Bedømmelse | 2.33/5 Samlet 3 Bedømmelser |
| Udvikler | Evan Kohilas |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/ekohilas/youtube-duration-sort |
| Understøttede Sprog | 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"
} | |