Sort By: Oldest

Return YouTube Sort by: Oldest

ما هو Sort By: Oldest؟

Sort By: Oldest هو إضافة Chrome تم تطويرها بواسطة Elements6007، والميزة الرئيسية لها هي "Return YouTube Sort by: Oldest".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Sort By: Oldest

قم بتنزيل ملفات الامتداد Sort By: Oldest بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        *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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Elements6007/ReturnYoutubeSort/
عنوان صفحة المساعدة https://github.com/Elements6007/ReturnYoutubeSort/
عنوان صفحة سياسة الخصوصية 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"
    }
}