Subtitle Downloader
Utility that helps download subtitles from different websites.
Subtitle Downloaderคืออะไร?
Subtitle Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย clarapastore17 และคุณลักษณะหลักของมันคือ "Utility that helps download subtitles from different websites."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subtitle Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Subtitle Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension that allows users to download subtitles for Youtube, Netflix and NPOstart. This is useful for language learners, because they will be able to look up words and sentences from videos they are watching in order to increase their understanding of a foreign language.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Subtitle Downloader |
ID | dikakjhieldejcmfhicajkjcoapahmao |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/subtitle-downloader/dikakjhieldejcmfhicajkjcoapahmao |
คำอธิบาย | Utility that helps download subtitles from different websites. |
ขนาดไฟล์ | 43.4 KB |
จำนวนการติดตั้ง | 3,328 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2023-01-18 |
วันที่เผยแพร่ | 2023-01-17 |
คะแนน | 3.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | clarapastore17 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Subtitle Downloader", "version": "0.1.0", "description": "Utility that helps download subtitles from different websites.", "manifest_version": 3, "author": "Language Dojo", "action": { "default_popup": "popup.html", "default_title": "Subtitle Downloader" }, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "activeTab", "downloads" ], "content_scripts": [ { "js": [ "netflix\/contentscript.js", "netflix\/inject.js" ], "matches": [ "https:\/\/*.netflix.com\/*" ], "run_at": "document_start", "all_frames": false }, { "js": [ "youtube\/contentscript.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ], "run_at": "document_start", "all_frames": false }, { "js": [ "npo\/contentscript.js", "npo\/inject.js" ], "matches": [ "https:\/\/*.npostart.nl\/*" ], "run_at": "document_start", "all_frames": false } ], "web_accessible_resources": [ { "resources": [ "netflix\/worker.js" ], "matches": [ "https:\/\/*.netflix.com\/*" ] }, { "resources": [ "youtube\/worker.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] }, { "resources": [ "npo\/worker.js" ], "matches": [ "https:\/\/*.npostart.nl\/*" ] } ] } |