YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
YouTube Playlist Durationとは何ですか?
YouTube Playlist DurationはJaiwanthによって開発されたChromeの拡張機能で、その主な機能は「This extension calculates and displays the total duration of a YouTube Playlist」です。
拡張機能のスクリーンショット
YouTube Playlist Duration拡張機能のCRXファイルをダウンロード
YouTube Playlist Duration拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- This extension works with any number of videos - You can set the index of starting and ending video and get duration of those videos. - Also works on mobile Refresh the page after installing the extension. If the number of videos in a playlist are more than 100, just scroll down to get complete duration.(As most of the time, YouTube renders only 100 videos for the first time page loads.)
拡張機能の基本情報
名前 | YouTube Playlist Duration |
ID | pmaemkjbelibcgknodkoeggkohmhdnbb |
公式URL | https://chromewebstore.google.com/detail/youtube-playlist-duration/pmaemkjbelibcgknodkoeggkohmhdnbb |
説明 | This extension calculates and displays the total duration of a YouTube Playlist |
ファイルサイズ | 8.68 KB |
インストール数 | 257 |
現在のバージョン | 2.2 |
最終更新日 | 2022-10-28 |
公開日 | 2020-07-31 |
評価 | 4.29/5 合計 7 レビュー |
開発者 | Jaiwanth |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jaiwanth-v/youtube-playlist-duration |
ヘルプページのURL | https://github.com/jaiwanth-v/youtube-playlist-duration |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Playlist Duration", "version": "2.2", "description": "This extension calculates and displays the total duration of a YouTube Playlist", "icons": { "48": "icon48.png" }, "action": { "default_icon": { "48": "icon48.png" }, "default_popup": "popup.html", "default_title": "Playlist Duration Calculator" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ] } ] } |