YouTube Advanced Playlist Export
Export detailed information from YouTube playlists in various formats.
YouTube Advanced Playlist Export क्या है?
YouTube Advanced Playlist Export piniek435 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Export detailed information from YouTube playlists in various formats."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Advanced Playlist Export एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Free and open-source extension for exporting detailed information from YouTube playlists in JSON, CSV or TXT format. Supported data: - Title - View Count - Published Date - Author - Length - Video ID - Video URL - Thumbnail URL How to use: 1. Open YouTube: Go to www.youtube.com and click on the playlist you want to export. 2. Scroll through the playlist: Scroll through the entire playlist from start to finish. This is important in order to to retrieve all the data from the playlist. 3. Save the data: Now that you’ve scrolled through the entire playlist, you can save the data. You will see three buttons: “Save to JSON”, “Save to TXT”, “Save to CSV”. Each of them allows you to save the data in a different format. Click on the one that suits you best.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Advanced Playlist Export |
ID | njipopjohbjffopcfebochjnjbejhfpc |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-advanced-playlist/njipopjohbjffopcfebochjnjbejhfpc |
विवरण | Export detailed information from YouTube playlists in various formats. |
फ़ाइल का आकार | 9.57 KB |
स्थापना संख्या | 60 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2024-02-28 |
प्रकाशन तिथि | 2023-11-29 |
रेटिंग | 3.50/5 कुल 2 रेटिंग्स |
डेवलपर | piniek435 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/piniek435/YouTube-Advanced-Playlist-Export |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Advanced Playlist Export", "version": "1.0.2", "description": "Export detailed information from YouTube playlists in various formats.", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "activeTab" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ] } |