YouTube Playlist Duration
This extension calculates and displays the total duration of a YouTube Playlist
YouTube Playlist Duration क्या है?
YouTube Playlist Duration Jaiwanth द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension calculates and displays the total duration of a YouTube Playlist"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Playlist Duration एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
- 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 |
ईमेल | [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\/*" ] } ] } |