YouTube Advanced Playlist Export

Export detailed information from YouTube playlists in various formats.

Τι είναι το YouTube Advanced Playlist Export;

Το YouTube Advanced Playlist Export είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον piniek435, και η κύρια λειτουργία του είναι "Export detailed information from YouTube playlists in various formats.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Advanced Playlist Export

Λήψη αρχείων επέκτασης YouTube Advanced Playlist Export σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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"
            ]
        }
    ]
}