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」です。
拡張機能のスクリーンショット
Playlist Sorter for YouTube拡張機能のCRXファイルをダウンロード
Playlist Sorter for YouTube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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 } |