Subtitle Downloader
Utility that helps download subtitles from different websites.
什麼是Subtitle Downloader?
Subtitle Downloader是由clarapastore17開發的Chrome擴展程式,該擴展的主要功能是“Utility that helps download subtitles from different websites.”。
擴展截圖
下載Subtitle Downloader擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |