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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kurokky และคุณลักษณะหลักของมันคือ "You can download the Youtube channel video list details in a text file."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download the Video List On Youtube

ดาวน์โหลดไฟล์ส่วนขยาย Download the Video List On Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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