Subtitle Downloader
Utility that helps download subtitles from different websites.
¿Qué es Subtitle Downloader?
Subtitle Downloader es una extensión de Chrome desarrollada por clarapastore17, y su función principal es "Utility that helps download subtitles from different websites.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Subtitle Downloader
Descarga archivos de extensión Subtitle Downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Subtitle Downloader |
ID | dikakjhieldejcmfhicajkjcoapahmao |
URL Oficial | https://chromewebstore.google.com/detail/subtitle-downloader/dikakjhieldejcmfhicajkjcoapahmao |
Descripción | Utility that helps download subtitles from different websites. |
Tamaño del Archivo | 43.4 KB |
Cantidad de Instalaciones | 3,328 |
Versión Actual | 0.1.0 |
Última Actualización | 2023-01-18 |
Fecha de Publicación | 2023-01-17 |
Calificación | 3.50/5 Total de 4 Calificaciones |
Desarrollador | clarapastore17 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } ] } |