Sort By: Oldest

Return YouTube Sort by: Oldest

Sort By: Oldestとは何ですか?

Sort By: OldestはElements6007によって開発されたChromeの拡張機能で、その主な機能は「Return YouTube Sort by: Oldest」です。

拡張機能のスクリーンショット

screenshot
screenshot

Sort By: Oldest拡張機能のCRXファイルをダウンロード

Sort By: Oldest拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Sort By: Oldest Sort By: Oldest
ID miglaibdlgminlepgeifekifakochlka
公式URL https://chromewebstore.google.com/detail/sort-by-oldest/miglaibdlgminlepgeifekifakochlka
説明 Return YouTube Sort by: Oldest
ファイルサイズ 51.32 KB
インストール数 3,019
現在のバージョン 1.4.5
最終更新日 2024-01-11
公開日 2023-04-19
評価 4.22/5 合計 49 レビュー
開発者 Elements6007
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Elements6007/ReturnYoutubeSort/
ヘルプページのURL https://github.com/Elements6007/ReturnYoutubeSort/
プライバシーポリシーページのURL https://privacy.elements6007.com
対応言語 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"
    }
}