YouTube Playlist Duration Calculator & Sorter
Get YouTube playlist duration & sort videos in a playlist.
YouTube Playlist Duration Calculator & Sorterとは何ですか?
YouTube Playlist Duration Calculator & SorterはAlperen Özdinçによって開発されたChromeの拡張機能で、その主な機能は「Get YouTube playlist duration & sort videos in a playlist.」です。
拡張機能のスクリーンショット
YouTube Playlist Duration Calculator & Sorter拡張機能のCRXファイルをダウンロード
YouTube Playlist Duration Calculator & Sorter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Get YouTube playlist duration & sort videos in a playlist. To use: -Visit any video in a playlist (https://www.youtube.com/watch?v=Wy1bTEFQyCc&list=PLNYkxOF6rcIDC0-BiwSL52yQ0n9rNozaF) -Wait for page to fully load -You can see the length and YouTube Playlist Toolkit You may need to refresh the page if any error occurs. You can see total playlist duration just above the videos. You can remove or add any videos you want from calculation You can select any spesific video and see the length after that video to the last. You can also sort the playlist by name or length and then back to original playlist order. All private or deleted videos will be filtered after extension starts. Currently, extension does not work in YouTube page navigation, so the page must be refreshed after navigating to another playlist in same tab. Any feedback from users will be taken into consideration as soon as possible. You can see the source code on website section. Feel free to contribute!
拡張機能の基本情報
名前 | |
ID | dngkgieidmdojikecmaelophabnldbhh |
公式URL | https://chrome.google.com/webstore/detail/youtube-playlist-duration/dngkgieidmdojikecmaelophabnldbhh |
説明 | Get YouTube playlist duration & sort videos in a playlist. |
ファイルサイズ | 1.27 MB |
インストール数 | 391 |
現在のバージョン | 1.1 |
最終更新日 | 2021-02-04 |
公開日 | 2021-01-13 |
評価 | 2.07/5 合計 14 レビュー |
開発者 | Alperen Özdinç |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ozdincalp/youtube-playlist-duration-calculator-sorter |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Playlist Duration Calculator & Sorter", "version": "1.1", "description": "Get YouTube playlist duration & sort videos in a playlist.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/watch*list*" ], "js": [ "app.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/*.youtube.com\/watch*list*" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "128": "images\/icon128.png" } } |