Youtube Subtitle Download Helper

This extension allows you to download captions data from Youtube. You can download captions data in multiple file formats.

Youtube Subtitle Download Helperคืออะไร?

Youtube Subtitle Download Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kyamashiro73 และคุณลักษณะหลักของมันคือ "This extension allows you to download captions data from Youtube. You can download captions data in multiple file formats."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Subtitle Download Helper

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

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

                        Youtubeの字幕ファイルをダウンロードすることができます。
字幕をダウンロードしたい動画ページでYoutube Subtitle Download Helperのアイコンをクリックすると、取得可能な言語・ファイル形式を選択してダウンロードすることができます。
TEXT, CSV, SRT, VTT, LRCのファイル形式をサポートしています。
この拡張機能は広告の表示・ユーザのデータの取得・送信を一切しません。
動画に字幕が存在するのにもかかわらず拡張機能が正常に動作しない場合、adblockを無効にしてみてください。

This extension allows you to download  captions data from Youtube.
Click the YouTube Subtitle Download Helper icon on the video page where you want to download subtitles. 
You can select and download available languages and file formats.
Supported file formats are .srt, .vtt, .csv, .txt, .lrc.
This extension doesn't show ads and send user's data anywhere.
If subtitles are present in your video but the extension doesn't work properly, try disabling adblock.
This extension is open source software.
You can see the source code here.
https://github.com/kyamashiro/youtube-subtitle-download-helper

change note:
v1.1.0 - fix problem that prevented download.
v1.0.6 - Fixed the problem of download failures due to same origin errors.
v1.0.5 - support LRC file format.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Subtitle Download Helper Youtube Subtitle Download Helper
ID dpmmcccjdcgdjnlnicicdbnlmohhpagf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-subtitle-download/dpmmcccjdcgdjnlnicicdbnlmohhpagf
คำอธิบาย This extension allows you to download captions data from Youtube. You can download captions data in multiple file formats.
ขนาดไฟล์ 81.33 KB
จำนวนการติดตั้ง 13,247
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2022-05-21
วันที่เผยแพร่ 2019-10-10
คะแนน 3.79/5 รวมทั้งหมด 33 คะแนน
ผู้พัฒนา kyamashiro73
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kyamashiro/youtube-subtitle-download-helper
URL หน้าช่วยเหลือ https://github.com/kyamashiro/youtube-subtitle-download-helper
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Subtitle Download Helper",
    "version": "1.2.0",
    "description": "This extension allows you to download  captions data from Youtube. You can download captions data in multiple file formats.",
    "permissions": [
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Youtube Subtitle Download Helper",
        "default_popup": ".\/html\/popup.html",
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "manifest_version": 3
}