Subtitle Downloader
Utility that helps download subtitles from different websites.
Qu'est-ce que Subtitle Downloader ?
Subtitle Downloader est une extension Chrome développée par clarapastore17, et sa fonction principale est "Utility that helps download subtitles from different websites.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Subtitle Downloader
Téléchargez les fichiers d'extension Subtitle Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Subtitle Downloader |
ID | dikakjhieldejcmfhicajkjcoapahmao |
URL Officiel | https://chromewebstore.google.com/detail/subtitle-downloader/dikakjhieldejcmfhicajkjcoapahmao |
Description | Utility that helps download subtitles from different websites. |
Taille du Fichier | 43.4 KB |
Nombre d'Installations | 3,328 |
Version Actuelle | 0.1.0 |
Dernière Mise à Jour | 2023-01-18 |
Date de Publication | 2023-01-17 |
Évaluation | 3.50/5 Total 4 Évaluations |
Développeur | clarapastore17 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |