Sort By: Oldest

Return YouTube Sort by: Oldest

What is Sort By: Oldest?

Sort By: Oldest is a Chrome extension developed by Elements6007, and its main feature is "Return YouTube Sort by: Oldest".

Extension Screenshots

screenshot
screenshot

Download Sort By: Oldest Extension CRX File

Download Sort By: Oldest extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        *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.                    

Extension Basic Information

Name Sort By: Oldest Sort By: Oldest
ID miglaibdlgminlepgeifekifakochlka
Official URL https://chromewebstore.google.com/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka
Description Return YouTube Sort by: Oldest
File Size 51.32 KB
Installation Count 3,019
Current Version 1.4.5
Last Updated 2024-01-11
Publish Date 2023-04-19
Rating 4.22/5 Total 49 Ratings
Developer Elements6007
Email [email protected]
Payment Type free
Extension Website https://github.com/Elements6007/ReturnYoutubeSort/
Help Page URL https://github.com/Elements6007/ReturnYoutubeSort/
Privacy Policy Page URL https://privacy.elements6007.com
Supported Languages 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"
    }
}