Download the Video List On Youtube
You can download the Youtube channel video list details in a text file.
Download the Video List On Youtube란 무엇입니까?
Download the Video List On Youtube은(는) kurokky에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "You can download the Youtube channel video list details in a text file."입니다.
확장 프로그램 스크린샷
Download the Video List On Youtube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you ever wanted a text file of all the videos on your favorite channels on Youtube? Wouldn't you want to put them in a Spreadsheet and sort them by video length(time)? 'Then there's already an extension with the same functionality!' There are undoubtedly similar extensions, but as far as I could tell, all such extensions were sending information to some server, not completing it locally. Download the Video List On Youtube" is a quick and easy way to compile your data without anyone knowing your information. Youtubeのお気に入りのチャンネルの全ての動画をテキストファイルでほしいと思ったことはありますか? それをSpreadsheetに入れて動画の長さでソートしてみたりしたくなりませんか? 「それなら、もう既に同じ機能の拡張があるよ!」 確かに似たような拡張はありますが、私が調べた限りそのような拡張は全て自分のローカルだけでは完結せずにどこかのサーバーに情報を送っていました。 自分の情報を誰にも知られず、サクッとデータをまとめてくれるそれが「Download the Video List On Youtube」です。
확장 프로그램 기본 정보
이름 | Download the Video List On Youtube |
ID | knpghbacnmcciihnbpbnegjbmbailnea |
공식 URL | https://chromewebstore.google.com/detail/download-the-video-list-o/knpghbacnmcciihnbpbnegjbmbailnea |
설명 | You can download the Youtube channel video list details in a text file. |
파일 크기 | 8.38 KB |
설치 횟수 | 26 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2023-03-09 |
출시 날짜 | 2023-03-06 |
개발자 | kurokky |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bu-kurokky.github.io/presentension/ytd.html |
도움말 페이지 URL | https://bu-kurokky.github.io/presentension/ytd.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.0", "name": "Download the Video List On Youtube", "description": "You can download the Youtube channel video list details in a text file.", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ], "run_at": "document_start", "js": [ "main.js" ] } ], "action": { "default_title": "Download the Video List On Youtube." }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "activeTab", "background" ], "manifest_version": 3 } |