Duration Sort for YouTube Subscriptions

Adds a button to re-sort YouTube subscriptions by their duration.

Wat is Duration Sort for YouTube Subscriptions?

Duration Sort for YouTube Subscriptions is een Chrome-extensie ontwikkeld door Evan Kohilas, en de belangrijkste functie is "Adds a button to re-sort YouTube subscriptions by their duration.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Duration Sort for YouTube Subscriptions

Download Duration Sort for YouTube Subscriptions-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Duration Sort for YouTube Subscriptions Duration Sort for YouTube Subscriptions
ID ogelmlojlklfapffhdeelmfpkpdbocha
Officiële URL https://chrome.google.com/webstore/detail/duration-sort-for-youtube/ogelmlojlklfapffhdeelmfpkpdbocha
Beschrijving Adds a button to re-sort YouTube subscriptions by their duration.
Bestandsgrootte 27.18 KB
Aantal Installaties 95
Huidige Versie 0.1.0
Laatst Bijgewerkt 2021-03-24
Publicatiedatum 2021-03-23
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Evan Kohilas
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ekohilas/youtube-duration-sort
Ondersteunde Talen 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"
}