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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}