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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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\/*" ] } ] } |