Playlist Sorter for YouTube

Sort YouTube playlist videos alphabetically by title

Playlist Sorter for YouTube란 무엇입니까?

Playlist Sorter for YouTube은(는) https://pocketproduct.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sort YouTube playlist videos alphabetically by title"입니다.

확장 프로그램 스크린샷

screenshot

Playlist Sorter for YouTube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        PLEASE NOTE: this extension supports sorting up to approximately 100 videos in a playlist. The YouTube API is not designed to efficiently sort videos in a playlist. This means the extension must iterate over each individual video, and it will take time, and you may get a 429 or quota error if you attempt to sort a playlist with more than 100 videos.

You've just uploaded 100 family videos to YouTube. You even put them in a playlist. But when you watch them, they're out of order. Manually reordering all those videos is a huge pain. Luckily, you named them with a year and month prefix. You go to the playlist settings and change the ordering to "Alphabetical". But wait, there is no option to sort alphabetically!?!?!

This extension will let you sort your playlist videos by title, in ascending or descending order.

YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

확장 프로그램 기본 정보

이름 Playlist Sorter for YouTube Playlist Sorter for YouTube
ID ameobkgafemjmlgobgbdadbdbgncbecg
공식 URL https://chromewebstore.google.com/detail/playlist-sorter-for-youtu/ameobkgafemjmlgobgbdadbdbgncbecg
설명 Sort YouTube playlist videos alphabetically by title
파일 크기 926 KB
설치 횟수 9,469
현재 버전 1.0.3
최근 업데이트 2024-01-22
출시 날짜 2020-05-09
평점 3.79/5 총 104 개의 평점
개발자 https://pocketproduct.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://pocketproduct.com/
도움말 페이지 URL http://pocketproduct.com/playlist-sorter/privacy.html
개인정보 보호 정책 페이지 URL http://pocketproduct.com/playlist-sorter/privacy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Playlist Sorter for YouTube",
    "version": "1.0.3",
    "description": "Sort YouTube playlist videos alphabetically by title",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "https:\/\/accounts.google.com\/",
        "https:\/\/www.googleapis.com\/"
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}