Sort By: Oldest

Return YouTube Sort by: Oldest

Cos'è Sort By: Oldest?

Sort By: Oldest è un'estensione di Chrome sviluppata da Elements6007, e la sua funzione principale è "Return YouTube Sort by: Oldest".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sort By: Oldest

Scarica i file di estensione Sort By: Oldest in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        *END OF LIFE. YOUTUBE HAS NOW RETURN SORT FEATURE.*

This extension will remain available. With 1.4.3 it should be able to shut itself off. It will also stick around for youtube shorts since they dont seem to have sort feature yet.  

This extension allows for sort by oldest feature on YouTube channels pages. New feature in 1.3.0 includes a loading animation which shows status of loaded videos. If desired, this can be disabled in the extension settings.

New in 1.4.0, adds oldest for YouTube shorts and livestreams. 

1.4.1 fixes bug in YouTube shorts.

1.4.2 fixes bug in oldest to latest.

NOTE: This extension is soon to become obsolete as YouTube is to reinstate the sort by oldest feature properly. This extension was never made as a perfect fix to its removal and does not function exactly as the original. Thank you to all who use this extension, I really appreciate it.

Data collected is for internal clickstream use, it is not personal data.                    

Informazioni di Base sull'Estensione

Nome Sort By: Oldest Sort By: Oldest
ID miglaibdlgminlepgeifekifakochlka
URL Ufficiale https://chromewebstore.google.com/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka
Descrizione Return YouTube Sort by: Oldest
Dimensione del File 51.32 KB
Conteggio Installazioni 3,019
Versione Corrente 1.4.5
Ultimo Aggiornamento 2024-01-11
Data di Pubblicazione 2023-04-19
Valutazione 4.22/5 Totale 49 Valutazioni
Sviluppatore Elements6007
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Elements6007/ReturnYoutubeSort/
URL della Pagina di Aiuto https://github.com/Elements6007/ReturnYoutubeSort/
URL della Pagina della Politica sulla Privacy https://privacy.elements6007.com
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sort By: Oldest",
    "version": "1.4.5",
    "manifest_version": 3,
    "host_permissions": [
        ""
    ],
    "permissions": [
        "alarms",
        "tabs",
        "storage",
        "webRequest",
        "webNavigation",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "description": "Return YouTube Sort by: Oldest",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon.png",
        "24": "assets\/icon.png",
        "32": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}