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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    }
}