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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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/
도움말 페이지 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"
    }
}