YouTube Advanced Playlist Export

Export detailed information from YouTube playlists in various formats.

YouTube Advanced Playlist Export là gì?

YouTube Advanced Playlist Export là một tiện ích mở rộng Chrome được phát triển bởi piniek435, và tính năng chính của nó là "Export detailed information from YouTube playlists in various formats.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Advanced Playlist Export

Tải xuống các tệp mở rộng YouTube Advanced Playlist Export dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Advanced Playlist Export YouTube Advanced Playlist Export
ID njipopjohbjffopcfebochjnjbejhfpc
URL Chính Thức https://chromewebstore.google.com/detail/youtube-advanced-playlist/njipopjohbjffopcfebochjnjbejhfpc
Mô tả Export detailed information from YouTube playlists in various formats.
Kích Thước Tệp 9.57 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2024-02-28
Ngày Phát Hành 2023-11-29
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển piniek435
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/piniek435/YouTube-Advanced-Playlist-Export
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}