Subtitle Downloader

Utility that helps download subtitles from different websites.

Was ist Subtitle Downloader?

Subtitle Downloader ist eine Chrome-Erweiterung, die von clarapastore17 entwickelt wurde, und ihr Hauptmerkmal ist "Utility that helps download subtitles from different websites.".

Erweiterungsscreenshots

screenshot

Subtitle Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Subtitle Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Subtitle Downloader Subtitle Downloader
ID dikakjhieldejcmfhicajkjcoapahmao
Offizielle URL https://chromewebstore.google.com/detail/subtitle-downloader/dikakjhieldejcmfhicajkjcoapahmao
Beschreibung Utility that helps download subtitles from different websites.
Dateigröße 43.4 KB
Installationsanzahl 3,328
Aktuelle Version 0.1.0
Letztes Update 2023-01-18
Veröffentlichungsdatum 2023-01-17
Bewertung 3.50/5 Insgesamt 4 Bewertungen
Entwickler clarapastore17
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}