YouTube Advanced Playlist Export

Export detailed information from YouTube playlists in various formats.

什麼是YouTube Advanced Playlist Export?

YouTube Advanced Playlist Export是由piniek435開發的Chrome擴展程式,該擴展的主要功能是“Export detailed information from YouTube playlists in various formats.”。

擴展截圖

screenshot
screenshot

下載YouTube Advanced Playlist Export擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}